saiashirwadinformatia/ipa-parser
Composer 安装命令:
composer require saiashirwadinformatia/ipa-parser
包简介
iOS App IPA Parser
README 文档
README
Identify the Meta info about the Apple .ipa file easily without extra efforts
Installation
composer require saiashirwadinformatia/ipa-parser
Usage
use SaiAshirwadInformatia\Services\IPAParser;
$path = __DIR__ . 'example.ipa';
$ipa = IPAParser::load($path);
echo $ipa->name; // Name of App
echo $ipa->identifier; // Bundle Identifier of App
echo $ipa->versionName; // Vesion Name of App
echo $ipa->versionCode; // Vesion Code of App
echo $ipa->primaryIcon; // Primary Icon File Contents of App
var_dump($ipa->info); // Prints detailed plist info
var_dump($ipa->info->build); // Prints build detail info
var_dump($ipa->info->permissions); // Prints build detail info
var_dump($ipa->info->orientations); // Prints build detail info
var_dump($ipa->icons); // Prints detailed icons
var_dump($ipa->icons->iphone); // Get all iPhone icons
Contribute
- Fork this project
- Clone your repository
- Create new branch of bug-fixes/new-features
Dependencies
composer install
Run Tests
./vendor/bin/phpunit
统计信息
- 总下载量: 23
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 5
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-08-15