globus-studio/atomic-framework-application

Atomic Framework Application

Maintainers

Package info

github.com/MADEVAL/Atomic-Framework-Application

Type:project

pkg:composer/globus-studio/atomic-framework-application

Transparency log

Statistics

Installs: 5

Dependents: 0

Suggesters: 0

Stars: 31

Open Issues: 0

0.0.1 2026-04-29 08:24 UTC

This package is auto-updated.

Last update: 2026-06-30 14:56:00 UTC


README

License: GPL-3.0 PHP

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

License

GPL-3.0-or-later. See LICENSE.