Simple and minimal yet another PHP 7 Framework
- 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.
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();
composer test