A skeleton for creating web applications with CakePHP 5.x.
The framework source code can be found here: cakephp/cakephp.
- clone the project skeleton (if you read this you already did it):)
- If you want to develop packages too copy
composer.local.example.jsontocomposer.local.jsonand create a dev folder next to your rpject. it will symlink the packages from there. - Download Composer or update
composer self-update. - Run
composer install. - rename the app_local.example.php to app_local.php
- start the cake server
bin/cake server -p 8765 - visit
http://localhost:8765/installto see the welcome page.
Since this skeleton is a starting point for your application and various files would have been modified as per your needs, there isn't a way to provide automated upgrades, so you have to do any updates manually.
Read and edit the environment specific config/app_local.php and set up the
'Datasources' and any other configuration relevant for your application.
Other environment agnostic settings can be changed in config/app.php.
The app skeleton uses Milligram (v1.3) minimalist CSS framework by default. You can, however, replace it with any other library or custom styles.