Meas
Meas

Reputation: 212

How to find folder App and MVC on CakePHP 3

With CakePHP 3, I can't find the folder App and folders Model, View, Controller. Is there any difference from CakePHP 2? This is Cakephp3

CakePHP Folder Structure

Upvotes: 0

Views: 773

Answers (3)

AndreyP
AndreyP

Reputation: 2678

Optimal way to install cakephp now is composer:

composer create-project --no-dev cakephp/app .

CakePhp folder structure

config
logs
plugins
src - this is app folder, contains Controller, Model, View
tmp
vendor
    aura - cake core dependency    
    cakephp
        cakephp - cakephp core  
        chronos - cake core dependency (used for datetime functions)
    composer  
    mobiledetect - cake core dependency  
    psr    
    zendframework - cake core dependency
webroot
    css  
    favicon.ico  
    font  
    img  
    js

Upvotes: 0

Arnab
Arnab

Reputation: 4356

check your src folder. CakePHP’s src folder is where you will do most of your application development. Cookbook

Upvotes: 2

Related Questions