Popularity
1.4
Growing
Activity
0.0
Stable
15
6
2

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

Monthly Downloads: 0
Programming language: PHP
License: MIT License
Tags: Micro Frameworks     Templating     Router     MVC     Restful    
Latest version: v0.1.8

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.

Do you think we are missing an alternative of DemirApp Minimal PHP Framework or a related project?

Add another 'Micro Frameworks' Library

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