Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sebastianbergmann/pdepend-process
Processor for PHP_Depend data
https://github.com/sebastianbergmann/pdepend-process
Last synced: about 2 months ago
JSON representation
Processor for PHP_Depend data
- Host: GitHub
- URL: https://github.com/sebastianbergmann/pdepend-process
- Owner: sebastianbergmann
- License: other
- Archived: true
- Created: 2014-04-03T04:43:30.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2018-09-10T11:50:14.000Z (about 6 years ago)
- Last Synced: 2024-09-21T10:03:38.292Z (2 months ago)
- Language: PHP
- Size: 526 KB
- Stars: 14
- Watchers: 5
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pdepend-process
`pdepend-process` processes data from [PHP_Depend](http://pdepend.org/).
## Installation
### PHP Archive (PHAR)
The easiest way to obtain `pdepend-process` is to download a [PHP Archive (PHAR)](http://php.net/phar) that has all required dependencies of `pdepend-process` bundled in a single file:
$ wget https://phar.phpunit.de/pdepend-process.phar
$ chmod +x pdepend-process.phar
$ mv pdepend-process.phar /usr/local/bin/pdepend-processYou can also immediately use the PHAR after you have downloaded it, of course:
$ wget https://phar.phpunit.de/pdepend-process.phar
$ php pdepend-process.phar### Composer
You can add this tool as a local, per-project, development-time dependency to your project using [Composer](https://getcomposer.org/):
$ composer require --dev sebastian/pdepend-process
You can then invoke it using the `vendor/bin/pdepend-process` executable.