An example of API with symfony 3 ================================ ## Installation ### Download the application ``` $ git clone https://gitnet.fr/deblan/sf-api-example.git $ cd sf-api-example ``` ### Install composer ``` $ php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" $ php -r "if (hash_file('SHA384', 'composer-setup.php') === 'aa96f26c2b67226a324c27919f1eb05f21c248b987e6195cad9690d5c1ff713d53020a02ac8c217dbf90a7eacc9d141d') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" $ php composer-setup.php $ php -r "unlink('composer-setup.php');" ``` ### Install the application ``` $ php composer.phar install --ignore-plateform-reqs $ php bin/console doctrine:database:create $ php bin/console doctrine:schema:update --force $ php bin/console assets:install --symlink web $ php bin/console fos:js-routing:dump --target web/bundles/fosjsrouting/js/fos_js_routes.js ``` At each updates of API: * edit `app/config/rest.yml` and expose new routes (@see `php bin/console debug:router`) * run `php bin/console fos:js-routing:dump --target web/bundles/fosjsrouting/js/fos_js_routes.js`. ## Run ``` $ php bin/console server:start ```