cuongnd88 / atom
Atom Framework
Installs: 72
Dependents: 0
Suggesters: 0
Security: 0
Stars: 15
Watchers: 3
Forks: 0
pkg:composer/cuongnd88/atom
Requires
- php: ^7.0
Requires (Dev)
- phpunit/phpunit: ^6.1
This package is auto-updated.
Last update: 2025-10-28 17:36:48 UTC
README
Atom is a simple PHP framework that implements MVC pattern.
Please read more Request Lifecycle Atom
Configuration
composer require cuongnd88/atom
Usage
Single Point Entry
index.php
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