承接 bamalik1996/ipa-parser-php 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

bamalik1996/ipa-parser-php

Composer 安装命令:

composer require bamalik1996/ipa-parser-php

包简介

The PHP IPA ISO Parser is a robust tool tailored for extracting and interpreting data from IPA (iOS App Store Package) builds. Seamlessly dive into the core details of any IPA file, retrieve essential metadata, and streamline your iOS app analysis and deployment processes with this efficient package

README 文档

README

Latest Version on Packagist Total Downloads GitHub Actions

The PHP IPA ISO Parser is a robust tool tailored for extracting and interpreting data from IPA (iOS App Store Package) builds. Seamlessly dive into the core details of any IPA file, retrieve essential metadata, and streamline your iOS app analysis and deployment processes with this efficient package.

Installation

You can install the package via composer:

composer require bamalik1996/ipa-parser-php

Usage

$parser = new IPAParser('path_to_your_ipa_file.ipa');

if ($parser->extractInfoPlist()) {
    $parser->convertPlistToXml();
    $appInfo = $parser->getAppInfo();

    echo "App Name: " . $appInfo['CFBundleName'] . "\n";
    echo "Bundle Identifier: " . $appInfo['CFBundleIdentifier'] . "\n";
    echo "Version: " . $appInfo['CFBundleShortVersionString'] . "\n";
    // ... and so on for other keys you're interested in
} else {
    echo "Failed to extract Info.plist.";
}

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Credits

统计信息

  • 总下载量: 70
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 5
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 5
  • Watchers: 1
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-09-26