kura-lab / json-viewer
JSON Viewer for PHP
1.0.0
2017-06-11 09:00 UTC
Requires
- php: >=5.6.30
Requires (Dev)
- phpunit/phpunit: 5.*
- squizlabs/php_codesniffer: 2.*
This package is not auto-updated.
Last update: 2024-10-27 02:38:58 UTC
README
JSON Viewer for PHP
Requirements
- PHP 5.6.30 or higher.
Install
At first, install composer.
$ mkdir workspace
$ cd workspace
$ curl -s http://getcomposer.org/installer | php
Create composer.json.
{
"require": {
"kura-lab/json-viewer": "1.*"
}
}
Install library.
$ php composer.phar install
Development
Check coding style with CodeSniffer.
$ vendor/bin/phpcs --standard=PSR2 src/
Execute unit test with PHPUnit.
$ vendor/bin/phpunit