All Projects → evozi → apk-parser-php

evozi / apk-parser-php

Licence: other
Read basic android application info from APK file using PHP

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to apk-parser-php

Apkleaks
Scanning APK file for URIs, endpoints & secrets.
Stars: ✭ 2,707 (+10311.54%)
Mutual labels:  apk-parser
Android Classyshark
Android and Java bytecode viewer
Stars: ✭ 6,930 (+26553.85%)
Mutual labels:  apk-parser
APK-Explorer-Editor
Source code of APK Explorer Editor (AEE), an open-source tool to explore the contents of an installed APK!
Stars: ✭ 259 (+896.15%)
Mutual labels:  apk-parser

APK Parser

Latest Stable Version Latest Unstable Version Total Downloads

This package can extract application package files in APK format used by devices running on Android OS. It can open an APK file and extract the contained manifest file to parse it and retrieve the meta-information it contains like the application name, description, device feature access permission it requires, etc.. The class can also extract the whole files contained in the APK file to a given directory.

Requirements

PHP 7.1+

Installation

Composer

Install Composer

curl -sS https://getcomposer.org/installer | php

Install via composer by hand

Create a composer.json into your project and add to your composer.json file by hand.

{
    ...
    "require": {
        ...
        "evozi/apk-parser-php":"dev-master"
    }
    ...
}

Once you have added this, just run:

php composer.phar update evozi/apk-parser-php

or

composer install

Install using composer

php composer.phar require evozi/apk-parser-php:dev-master

Testing

Tests are powered by PHPUnit. You have several options.

  • Run phpunit if PHPUnit is installed globally.
  • Install dependencies (requires Composer). Run php composer.phar --dev install or composer --dev install. Then bin/vendor/phpunit to run version installed by Composer. This ensures that you are running a version compatible with the test suite.

License

APK Parser is MIT licensed.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].