royvermeulen / morloax
This is a simple php mvc framework.
Installs: 13
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/royvermeulen/morloax
Requires
- doctrine/dbal: ^3.7
- doctrine/migrations: ^3.7
- nikic/fast-route: ^1.3
- symfony/console: ^7.0
README
Description
Morloax Framework is a simple MVC framework for PHP, designed to streamline the development of web applications.
Getting Started
-
Make an Empty Project
Create an empty project and add a
composer.jsonfile to it. Add the following code to yourcomposer.jsonfile:{ "autoload": { "psr-4": { "App\\": "app/", "Middleware\\": "middleware/" } }, "require": { "royvermeulen/morloax": "*" } }Run the following command in your terminal to install Morlaux Framework:
composer install
-
Initialize Morlaux Framework
After installing Morlaux Framework, run the following command in your terminal:
vendor/bin/morloax init
-
Generate Settings
Generate the framework settings by running the following command:
vendor/bin/morloax generate:settings
Now run this command:
composer dump-autolaod
Now you're done! Your Morloax Framework is set up and ready for development.