Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ezimuel/php-benelux-apigility
Hands on part of the Apigility tutorial at PHP Benelux 2016
https://github.com/ezimuel/php-benelux-apigility
Last synced: about 1 month ago
JSON representation
Hands on part of the Apigility tutorial at PHP Benelux 2016
- Host: GitHub
- URL: https://github.com/ezimuel/php-benelux-apigility
- Owner: ezimuel
- Created: 2016-01-27T16:10:07.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-29T11:29:58.000Z (almost 9 years ago)
- Last Synced: 2023-04-10T13:07:06.292Z (over 1 year ago)
- Language: PHP
- Size: 54.7 KB
- Stars: 4
- Watchers: 3
- Forks: 5
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PHP Benelux 2016 Apigility tutorial
Hands on part of the "Develop RESTful API in PHP using Apigility" tutorial at [PHP Benelux 2016](https://conference.phpbenelux.eu/2016/talk/develop-restful-api-in-php-using-apigility/).
Installation
------------You can install the tutorial using [composer](https://getcomposer.org/):
```console
$ composer install
```After that you can run the Apigility Admin UI with the following command:
```console
php -S 0:8888 -t public/ public/index.php
```and open your browser to [http://localhost:8888](http://localhost:8888).
Exercises
---------The tutorial is based on exercises, to see the solution of each one you need to
checkout the specific branch. For instance, for the exercise 1 execute the
following command:```console
git checkout -b exercise/1 origin/exercise/1
```All the exercises are stored in the `exercise/*` branches.