├── .editorconfig ├── .github └── FUNDING.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── VERSION ├── bin └── clish ├── box.json ├── composer.json ├── docs ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── example.php ├── example.png ├── font ├── dejavu.ttf ├── droidsans.ttf └── ubuntu.ttf ├── phpunit.xml.dist ├── src ├── Console │ └── ClishCommand.php ├── Exporter.php ├── Highlighter.php └── Pretty.php └── tests ├── Console └── ClishCommandTest.php ├── ExporterTest.php ├── HighlighterTest.php ├── bootstrap.php └── example.phps /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-cli-syntax/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: adhocore 2 | custom: ['https://paypal.me/ji10'] 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-cli-syntax/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-cli-syntax/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-cli-syntax/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-cli-syntax/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-cli-syntax/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-cli-syntax/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.4.0 2 | -------------------------------------------------------------------------------- /bin/clish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-cli-syntax/HEAD/bin/clish -------------------------------------------------------------------------------- /box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-cli-syntax/HEAD/box.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-cli-syntax/HEAD/composer.json -------------------------------------------------------------------------------- /docs/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-cli-syntax/HEAD/docs/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /docs/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-cli-syntax/HEAD/docs/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-cli-syntax/HEAD/example.php -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-cli-syntax/HEAD/example.png -------------------------------------------------------------------------------- /font/dejavu.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-cli-syntax/HEAD/font/dejavu.ttf -------------------------------------------------------------------------------- /font/droidsans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-cli-syntax/HEAD/font/droidsans.ttf -------------------------------------------------------------------------------- /font/ubuntu.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-cli-syntax/HEAD/font/ubuntu.ttf -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-cli-syntax/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Console/ClishCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-cli-syntax/HEAD/src/Console/ClishCommand.php -------------------------------------------------------------------------------- /src/Exporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-cli-syntax/HEAD/src/Exporter.php -------------------------------------------------------------------------------- /src/Highlighter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-cli-syntax/HEAD/src/Highlighter.php -------------------------------------------------------------------------------- /src/Pretty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-cli-syntax/HEAD/src/Pretty.php -------------------------------------------------------------------------------- /tests/Console/ClishCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-cli-syntax/HEAD/tests/Console/ClishCommandTest.php -------------------------------------------------------------------------------- /tests/ExporterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-cli-syntax/HEAD/tests/ExporterTest.php -------------------------------------------------------------------------------- /tests/HighlighterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-cli-syntax/HEAD/tests/HighlighterTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-cli-syntax/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/example.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-cli-syntax/HEAD/tests/example.phps --------------------------------------------------------------------------------