PHPackages                             sharksoft/sharkipaparser - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Parsing &amp; Serialization](/categories/parsing)
4. /
5. sharksoft/sharkipaparser

ActiveLibrary[Parsing &amp; Serialization](/categories/parsing)

sharksoft/sharkipaparser
========================

A simple php library to parse the Apple IPA's plist

1(9y ago)514.5k2[1 issues](https://github.com/sharksoft/sharkipaparser/issues)PHPPHP &gt;=5.3

Since Oct 12Pushed 7y ago1 watchersCompare

[ Source](https://github.com/sharksoft/sharkipaparser)[ Packagist](https://packagist.org/packages/sharksoft/sharkipaparser)[ RSS](/packages/sharksoft-sharkipaparser/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependencies (1)Versions (2)Used By (0)

SharkIpaParser
==============

[](#sharkipaparser)

[![FOSSA Status](https://camo.githubusercontent.com/2ae83a629d8eaca06947757cae3762816ad711cd934f837ba132411cf1ae2bef/68747470733a2f2f6170702e666f7373612e696f2f6170692f70726f6a656374732f6769742532426769746875622e636f6d2532466d6162756f6e6f6d6f253246736861726b6970617061727365722e7376673f747970653d736869656c64)](https://app.fossa.io/projects/git%2Bgithub.com%2Fmabuonomo%2Fsharkipaparser?ref=badge_shield)

A simple php library to parse the Apple IPA's plist

\#Installation Add this library at your composer.json

```
...
    "minimum-stability": "dev",
    "require": {
        "php": ">=5.3",
        "sharksoft/sharkipaparser": "master"
    },
...
```

Then

```
composer install
```

\#Use (for details see test.php)

```
require_once 'class/SharkIpaParser.php';
//instance
$shark = new SharkIpaParser\SharkIpaParserHelper();
$shark->load_ipa('C:\Users\mario\Desktop\test.ipa');
$array_plist = $shark->read_plist();
```

The result of $array\_plist is something similar:

```
array (size=34)
  'UIRequiredDeviceCapabilities' =>
    array (size=1)
      0 => string 'armv7' (length=5)
  'UIRequiresFullScreen' => boolean true
  'CFBundleInfoDictionaryVersion' => string '6.0' (length=3)
  'UISupportedInterfaceOrientations~ipad' =>
    array (size=2)
      0 => string 'UIInterfaceOrientationLandscapeLeft' (length=35)
      1 => string 'UIInterfaceOrientationLandscapeRight' (length=36)
  'DTPlatformVersion' => string '10.0' (length=4)
  'DTCompiler' => string 'com.apple.compilers.llvm.clang.1_0' (length=34)
  'DTSDKName' => string 'iphoneos10.0' (length=12)
  'CFBundleName' => string 'AppName' (length=9)
  'UIMainStoryboardFile~ipad' => string 'MainiPad' (length=8)
  'CFBundleIcons' =>
    array (size=1)
      'CFBundlePrimaryIcon' =>
        array (size=1)
          'CFBundleIconFiles' =>
            array (size=3)
              ...
  'LSRequiresIPhoneOS' => boolean true
  'DTSDKBuild' => string '14A345' (length=6)
  'CFBundleShortVersionString' => string '0.5' (length=3)
  'CFBundleSupportedPlatforms' =>
...
```

The structure is key =&gt; value, for example you can access at CFBundleName in this way:

```
echo $array_plist['CFBundleName'];
```

```
Output: "AppName"

```

\#enjoy ;)

License
-------

[](#license)

[![FOSSA Status](https://camo.githubusercontent.com/13fe16b5f9cbdde2c5fd973976eb9a90f9d4eef5b6c8dc2e3c4449d21ff5be89/68747470733a2f2f6170702e666f7373612e696f2f6170692f70726f6a656374732f6769742532426769746875622e636f6d2532466d6162756f6e6f6d6f253246736861726b6970617061727365722e7376673f747970653d6c61726765)](https://app.fossa.io/projects/git%2Bgithub.com%2Fmabuonomo%2Fsharkipaparser?ref=badge_large)

###  Health Score

31

—

LowBetter than 66% of packages

Maintenance16

Infrequent updates — may be unmaintained

Popularity26

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 97.6% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

3547d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/33651105?v=4)[sharksoft](/maintainers/sharksoft)[@SharkSoft](https://github.com/SharkSoft)

---

Top Contributors

[![mabuonomo](https://avatars.githubusercontent.com/u/545691?v=4)](https://github.com/mabuonomo "mabuonomo (40 commits)")[![fossabot](https://avatars.githubusercontent.com/u/29791463?v=4)](https://github.com/fossabot "fossabot (1 commits)")

### Embed Badge

![Health badge](/badges/sharksoft-sharkipaparser/health.svg)

```
[![Health](https://phpackages.com/badges/sharksoft-sharkipaparser/health.svg)](https://phpackages.com/packages/sharksoft-sharkipaparser)
```

###  Alternatives

[mck89/peast

Peast is PHP library that generates AST for JavaScript code

19037.7M41](/packages/mck89-peast)[sauladam/shipment-tracker

Parses tracking information for several carriers, like UPS, USPS, DHL and GLS by simply scraping the data. No need for any kind of API access.

9642.0k](/packages/sauladam-shipment-tracker)[jstewmc/rtf

Read and write Rich Text Format (RTF) documents with PHP

46143.1k6](/packages/jstewmc-rtf)[moonshine/layouts-field

Field for repeating groups of fields for MoonShine

107.9k](/packages/moonshine-layouts-field)[tcds-io/php-jackson

A lightweight, flexible object serializer for PHP, inspired by FasterXML/jackson

112.9k10](/packages/tcds-io-php-jackson)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
