stefanak-michal/dragoncore

PHP framework. Simple, fast and lightweight.

Maintainers

Package info

github.com/stefanak-michal/DragonCore

Type:project

pkg:composer/stefanak-michal/dragoncore

Transparency log

Fund package maintenance!

Ko-Fi

Statistics

Installs: 8

Dependents: 0

Suggesters: 0

Stars: 2

Open Issues: 3

v4.1.0 2026-06-24 12:54 UTC

This package is auto-updated.

Last update: 2026-07-09 08:44:00 UTC


README

DragonCore

Dragon PHP Framework

  • Easy deployment and setup
  • Config as php files with support of lookup tables
  • Simple file names conventions
  • One core for multiple projects
  • Autoloader with vendor support
  • CLI support
  • PHP >= 8.5

Ask DeepWiki

How to start

You have three options how to start using this framework:

  1. Install (clone) the framework to own directory and add into your project composer PSR-4 autoloader path "Dragon": "path/to/DragonCore".
  2. Require this framework as a dependency in your project composer require stefanak-michal/dragoncore.
  3. Use composer to create project with framework composer create-project stefanak-michal/dragoncore and add your project files right into it.

After that you just have to call constructor of \Dragon\Application in your project start file (usually index.php):

require_once __DIR__ . '/vendor/autoload.php';

$application = new Dragon\Application();
$application->run();

Check documentation for more informations.

ko-fi