A skeleton for creating applications with CakePHP 3.0.
This is an unstable repository and should be treated as an alpha.
After cloning this repository you can install CakePHP into your new application in one of two ways:
- Download composer.
- Run
php composer.phar install
to install dependencies.
- Clone CakePHP into
vendor/cakephp/cakephp
. - Checkout the
3.0
branch in the new CakePHP clone. - In
App/Config/bootstrap.php
uncomment the section usingCake\Core\ClassLoader
. - Copy
App/Config/app.php.default
toApp/Config/app.php
You should now be able to visit the path to where you installed CakePHP and see the setup traffic lights.
Read and edit App/Config/app.php
and setup the 'Datasources' and any other configuration
relevant for your application.