A new way for travels
This repository is a simple PHP MVC structure from scratch.
It uses some cool vendors/libraries such as FastRouter (fast request php router), Twig and PHP_CodeSniffer soon. For this one, just a simple example where users can chose one of their databases and see tables in it.
- Clone the repos from Github.
- Run
composer install. - Create app/db.php from app/db.php.dist file and add your DB parameters. Don't delete the .dist file, it must be kept.
define('APP_DB_HOST', 'your_db_host');
define('APP_DB_NAME', 'your_db_name');
define('APP_DB_USER', 'your_db_user_wich_is_not_root');
define('APP_DB_PWD', 'your_db_password');- Import
simple-mvc.sqlin your SQL server, - Run the internal PHP webserver with
php -S localhost:8000 -t public/. The option-twithpublicas parameter, mean your localhost will target the/publicfolder. - Go to
localhost:8000with your favorite browser. - From this starter kit, create your own web application.
01/10/2018 @wildcodeschool.fr