Atom is a simple PHP framework that implements MVC pattern.
Please read more Request Lifecycle Atom
composer require cuongnd88/atom
require __DIR__ . '/../vendor/autoload.php'; use Atom\Http\Server; try { $server = new Server(['env']); $server->handle(); } catch (Exception $e) { echo $e->getMessage(); }
For example of implementation and usage, please take a look at EzyCrazy project https://github.com/cuongnd88/ezycrazy which was developed using Atom framework