📂Folder Structure

CakePHP Light Able folder structure is meticulously organized to enhance project scalability and maintainability. With directories for routes, controllers, assets, views, and configuration settings.

├── 📁 Admin  
        ├── 📁bin
        ├── 📁config
        ├── 📁logs
        ├── 📁plugins
        ├── 📁resources
        ├── 📁src
        ├── 📁 templates
        |        ├── 📁cell
        |        ├── 📁 element
        |        |        └── 📄 All Common layout PHP Pages
        |        ├── 📁email
        |        ├── 📁views
        |        ├── 📁Error
        |        ├── 📁layout
        |        ├── 📁 pages
        |        |        └── 📄 All PHP Pages
        |        └── 📁Users
        ├── 📁 tests
        ├── 📁 tmp
        ├── 📁 webroot
        |        ├── 📁css
        |        ├── 📁fonts
        |        ├── 📁images
        |        ├── 📁js
        |        └── 📁json
        ├── 📄 .editorconfig
        ├── 📄 .gitattributes
        ├── 📄 .gitignore
        ├── 📄 .htaccess
        ├── 📄 composer.json
        ├── 📄 composer.lock
        ├── 📄 index.php
        ├── 📄 phpcs.xml
        ├── 📄 phpstan.neon
        ├── 📄 phpunit.xml.dist
        └── 📄 README.md

Light Able CakePHP Folders Structure

File/Folder
Path
Description

📂Lightable-CakePHP

root:

The main folder of our project.

📁src

src/

A Directory for controllers.

📁logs

logs/

A Directory for error.

📁 config

config/

A Directory for config.

📁tmp

tmp/

A Directory for cache.

📁 templates

templates/

All the PHP files are here.

📁 tests

tests/

All tests files will be here.

Light Able CakePHP Files

File
Path
Description

composer.json

/composer.json

All the CakePHP packages will be in this file

Last updated