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)314.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 2mo 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

30

—

LowBetter than 64% of packages

Maintenance13

Infrequent updates — may be unmaintained

Popularity24

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

3499d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/65b1306e144f11b5cdcaa94a5f3e51d6980577f2029ec3c56b4fb9e35bc6da77?d=identicon)[sharksoft](/maintainers/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

[mtdowling/jmespath.php

Declaratively specify how to extract elements from a JSON document

2.0k472.8M135](/packages/mtdowling-jmespathphp)[opis/closure

A library that can be used to serialize closures (anonymous functions) and arbitrary data.

2.6k230.0M284](/packages/opis-closure)[masterminds/html5

An HTML5 parser and serializer.

1.8k242.8M229](/packages/masterminds-html5)[sabberworm/php-css-parser

Parser for CSS Files written in PHP

1.8k191.2M65](/packages/sabberworm-php-css-parser)[michelf/php-markdown

PHP Markdown

3.5k52.4M345](/packages/michelf-php-markdown)[jms/metadata

Class/method/property metadata management in PHP

1.8k152.8M88](/packages/jms-metadata)

PHPackages © 2026

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