project justifyframe
Simple, lightweight framework
justify/justifyframe
Simple, lightweight framework
- Sunday, May 13, 2018
- by Justify
- Repository
- 0 Watchers
- 1 Stars
- 0 Installations
- PHP
- 0 Dependents
- 0 Suggesters
- 1 Forks
- 0 Open issues
- 1 Versions
- 0 % Grown
Justify framework
PHP simple WEB MVC framework, (*1)
After download do not forget install composer dependencies:
composer install --no-dev
, (*2)
Folders
-
bootstrap - Initial Files
-
config - config files
-
controllers - your controllers
-
core - kernel components of framework
-
mail - your email templates
-
models - your models
-
views - your views
-
web - your frontend files
Config files
Config files located in config
directory
* db.php - stores data base settings
* routes.php - routes of application. Key is URI regExp pattern, value is / (without brackets)
* settings.php - main array with all setting
* web.php- web components for HTML page, (*3)
Migrations
I decided to use Phinx migrations. Checkout http://docs.phinx.org/en/latest/index.html
Your migration files located in database/migrations
.
Your seeds files located in database/seeds
., (*4)