This is a sample application wich can bootstrap a project based on the PSX framework. You can install it through composer
composer create-project psx/sample .
More information about PSX at http://phpsx.org
In the configuration.php file change the key psx_url
to the absolute url to
the public/
folder. If you have setup a vhost this is simply the domain.
In the following a few explanations about the important parts of the API.
-
src/Sample/Api/Population/Collection.php
This is the class which represents the/population
endpoint -
src/Sample/Service/Population.php
Service class which contains the business logic of the API. -
src/Sample/Dependency/Container.php
DI container which provides the population service -
tests/Sample/Api/Population/CollectionTest.php
Contains the PHPUnit test case for the/population
endpoint. If you have phpunit installed you can run the tests in the root of the project with the phpunit command.