Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 955 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 955 Bytes

CakePHP Application Skeleton

A skeleton for creating applications with CakePHP 3.0.

This is an unstable repository and should be treated as an alpha.

Installation

Install with composer

  1. Download composer.
  2. Run php composer.phar create-project -s dev cakephp/app.

Manual installation

  1. Clone this repository at desired location.
  2. Clone CakePHP into vendor/cakephp/cakephp.
  3. Checkout the 3.0 branch in the new CakePHP clone.
  4. In App/Config/bootstrap.php uncomment the section using Cake\Core\ClassLoader.
  5. Copy App/Config/app.default.php to App/Config/app.php

You should now be able to visit the path to where you installed the app and see the setup traffic lights.

Configuration

Read and edit App/Config/app.php and setup the 'Datasources' and any other configuration relevant for your application.