sf-api-example/README.md

872 B

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

Run

$ php bin/console server:start