$ composer install
Script to check for syntax errors, code style, raw metrics stream and perform unit tests:
$ chmod +x scripts/pre-commit.sh
$ ./scripts/pre-commit.sh
Copy params dist file to params file and change database configs if necessary:
$ cp config/parameters.yml.dist config/parameters.yml
Access PostgreSQL (default) and create tire_control:
CREATE DATABASE tire_control;
Create database schema using Doctrine ORM:
$ vendor/bin/doctrine orm:schema-tool:create
Start local server:
$ php -S localhost:8080 -t public/
Generating local HTML file to check out the available endpoints:
$ aglio -i apiary.apib -o apiary.html
Check out the API documentation online.