Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tufanbarisyildirim/php-apk-parser
Read basic info about an application from .apk file.
https://github.com/tufanbarisyildirim/php-apk-parser
android apk-parser extract parser php
Last synced: 2 months ago
JSON representation
Read basic info about an application from .apk file.
- Host: GitHub
- URL: https://github.com/tufanbarisyildirim/php-apk-parser
- Owner: tufanbarisyildirim
- License: other
- Created: 2012-03-27T07:44:48.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2023-10-07T14:16:38.000Z (about 1 year ago)
- Last Synced: 2024-04-04T06:44:22.741Z (7 months ago)
- Topics: android, apk-parser, extract, parser, php
- Language: PHP
- Homepage: http://tufanbarisyildirim.github.io/php-apk-parser/
- Size: 828 KB
- Stars: 333
- Watchers: 13
- Forks: 148
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# [Apk Parser](http://tufanbarisyildirim.github.io/php-apk-parser/)
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 8.0+
PHP 7.3+ is in [2.x.x](https://github.com/tufanbarisyildirim/php-apk-parser/tree/v2.x.x) branch### Installation
- Install [composer](http://getcomposer.org/download/)
- Run the following command in the folder where `composer.json` is: `composer require tufanbarisyildirim/php-apk-parser`## Testing
Tests are powered by PHPUnit. You have several options.
- Run `phpunit` if PHPUnit is installed globally.
- Install dependencies (requires [Composer](https://getcomposer.org/download)). 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.## Contributing
Fork the repo, make your changes, add your name to developers, and create a pull request with a comment that describe
your changes. That's all!
[Thanks to all contributers](https://github.com/tufanbarisyildirim/php-apk-parser/graphs/contributors)## Thanks
Thanks JetBrains for the free open source license
### License
Apk Parser is [MIT licensed](./LICENSE.md).