Reputation: 212
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
Upvotes: 0
Views: 773
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
Reputation: 4356
check your src folder. CakePHP’s src folder is where you will do most of your application development. Cookbook
Upvotes: 2
Reputation: 2277
CakePHP 3.x now uses the PSR-4
http://book.cakephp.org/3.0/en/appendices/3-0-migration-guide.html#application-directory-layout
You should read the migration guide http://book.cakephp.org/3.0/en/appendices/3-0-migration-guide.html
This can be usefull too http://book.cakephp.org/3.0/en/intro/cakephp-folder-structure.html
Upvotes: 3