Backend-PHP is a basic code base that provides REST functionality using MVC architecture. It's ideal for developing API's that should provide information in multiple formats, or an API that also needs to act as a web site.
It also has the following advantages:
- Unit Testable and Tested using PHPUnit
- PSR0, PSR1 and PSR2 compliant
- Results can be modified on a per format basis
It serves as the ideal low level base for applications or frameworks that need to be RESTful and done using MVC.
git clone git@github.com:backend/base-system.git
composer install
composer
will install all the necessary dependencies. If you're not familiar with
composer, check out http://getcomposer.org.
The base system includes the Backend-Base tier that provides basic application functionality straight out of the box. It uses a couple of third party components to provide functionality such as logging, email sending, dependency injection and event management.
The base system is ideal for projects using multiple content types and data sources.
For more information, read the documentation on http://backend-php.net