در این مقاله ، شرکت پلاتین ، Folder Structure فریمورکی را بررسی می کند که بر پایهٔ معماری MVC توسعه خواهد داد. برای آموزش ، به ادامه مقاله می پردازیم. داریم:
۱ |
mvc ├── app │ ├── Base │ │ ├── Config │ │ │ └── Database.php │ │ ├── Controllers │ │ │ └── DefaultController.php │ │ ├── Models │ │ │ └── User.php │ │ └── Views │ │ └── default │ │ ├── about.php │ │ ├── homepage.php │ │ ├── notfound.php │ │ └── users.php │ └── Core │ ├── App.php │ ├── BaseController.php │ ├── Interfaces │ │ ├── ControllerInterface.php │ │ └── UserInterface.php │ └── Routing.php ├── composer.json ├── public │ ├── css │ │ └── styles.css │ ├── index.php │ ├── .htaccess │ └── js │ └── app.js └── vendor ├── autoload.php └── composer ├── autoload_classmap.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php ├── ClassLoader.php ├── installed.json |
همانطور که می بینید، برای این […]