phpcodex / framework
A PHP Framework
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
Requires
- php: ^7.1.3
- phpunit/phpunit: ^7.4
This package is auto-updated.
Last update: 2025-04-16 07:39:38 UTC
README
This was built just for fun, to see how quickly a framework could be built with a laravel-style MVC architecture. Apparently, pretty darn quick!
I wouldn't recommend using this as it's not going to be supported but it would give you a good insight as to how I architect a PHP program.
To run this:
use PHPCodex\Framework\App;
And then initialise the resource.
App::Instance();
This will run the resource and identify whether you are running from the CLI or Web interface. While this project is the framework, you should have a wrapper around this which only requires this project.