Description
Simple and minimal yet another PHP 7
Features
* Simple routing
* Simple container (Dependency Injection)
* Flash messages
* Simple JSON response
* Simple middleware system
* Resource routes
* Native PHP templating system
* and much more
DemirApp Minimal PHP Framework alternatives and similar libraries
Based on the "Micro Frameworks" category.
Alternatively, view DemirApp Minimal PHP Framework alternatives based on common mentions on social networks and blogs.
-
Siler
DISCONTINUED. ⚡ Flat-files and plain-old PHP functions rockin'on as a set of general purpose high-level abstractions. -
Liten
Liten is a small and simple micro framework which can be used to build restful services and apps.
SaaSHub - Software Alternatives and Reviews
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of DemirApp Minimal PHP Framework or a related project?
README
DemirApp Minimal PHP Framework
Introduction
Simple and minimal yet another PHP 7 Framework
Features
- Simple routing
- Simple container (Dependency Injection)
- Flash messages
- Simple JSON response
- Simple middleware system
- Resource routes
- Native PHP templating system
- and much more
Documentation is coming soon.
Türkçe dökümantasyona buradan ulaşabilirsiniz.
Installation
The recommended way to install is via Composer:
composer require yidemir/app
and start coding:
<?php
use Demir\App;
require 'vendor/autoload.php';
App::get('/', function(){
return App::render('home');
});
App::run();
Or download from relases page.
<?php
use Demir\App;
require 'src/App.php';
App::get('/', function(){
echo 'Hello world!';
});
App::run();
Test
composer test