A skeleton for creating applications with CakePHP 3.0.
This is an unstable repository and should be treated as an alpha.
- Download composer or update
composer self-update
. - Run
php composer.phar create-project -s dev cakephp/app [app_name]
.
If Composer is installed globally, run
composer create-project -s dev cakephp/app [app_name]
- Clone this repository at desired location.
- Clone CakePHP into
vendor/cakephp/cakephp
. - Checkout the
3.0
branch in the new CakePHP clone. - Copy
App/Config/app.default.php
toApp/Config/app.php
You should now be able to visit the path to where you installed the app 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.