globus-studio / atomic-framework-application
Atomic Framework Application
Package info
github.com/MADEVAL/Atomic-Framework-Application
Type:project
pkg:composer/globus-studio/atomic-framework-application
0.0.1
2026-04-29 08:24 UTC
Requires
- php: >=8.1
- atomic/framework: dev-main
This package is auto-updated.
Last update: 2026-06-30 14:56:00 UTC
README
Lightweight application skeleton for Atomic Framework. Minimal setup and structure to start building applications with Atomic.
Requirements
- PHP >= 8.1 and Composer.
- MySQL/MariaDB.
- Redis recommended for cache and queues.
- PHP extensions: json, session, mbstring, fileinfo, pdo, pdo_mysql, curl.
Installation
composer create-project globus-studio/atomic-framework-application myapp
cd myapp
composer install
cp .env.example .env
php atomic init/key
php -S localhost:8000 -t public
Or clone directly:
git clone https://github.com/MADEVAL/Atomic-Framework-Application.git myapp
cd myapp
composer install
cp .env.example .env
php atomic init/key
php -S localhost:8000 -t public
Project Structure
app/- application code (controllers, models, middleware).bootstrap/- framework bootstrap and initialization.config/- configuration files.public/- web root.routes/,resources/,storage/- routes, templates, logs/uploads.
Common Commands
php atomic init- scaffold project.php atomic migrations/migrate- run migrations.php atomic queue/worker- start queue worker.php vendor/bin/phpunit- run tests.
Links
- Framework: https://github.com/MADEVAL/Atomic-Framework
- Skeleton: https://github.com/MADEVAL/Atomic-Framework-Application
License
GPL-3.0-or-later. See LICENSE.