sebastian / phptok
Tool for quickly dumping the tokens of a PHP sourcecode file
Requires
- php: >=5.4
- phpunit/php-token-stream: ~1.4
- sebastian/version: ~1.0
- symfony/console: ~2.6
This package is not auto-updated.
Last update: 2020-01-20 01:05:16 UTC
README
phptok
is a tool for quickly dumping the tokens of a PHP sourcecode file.
Installation
PHP Archive (PHAR)
The easiest way to obtain phptok is to download a PHP Archive (PHAR) that has all required dependencies of phptok bundled in a single file:
wget https://phar.phpunit.de/phptok.phar
chmod +x phptok.phar
mv phptok.phar /usr/local/bin/phptok
You can also immediately use the PHAR after you have downloaded it, of course:
wget https://phar.phpunit.de/phptok.phar
php phptok.phar
Composer
Simply add a dependency on sebastian/phptok
to your project's composer.json
file if you use Composer to manage the dependencies of your project. Here is a minimal example of a composer.json
file that just defines a development-time dependency on phptok:
{
"require-dev": {
"sebastian/phptok": "*"
}
}
For a system-wide installation via Composer, you can run:
composer global require 'sebastian/phptok=*'
Make sure you have ~/.composer/vendor/bin/
in your path.