Skip to content
forked from leoht/Apricot

The lightweight one-file PHP framework

License

Notifications You must be signed in to change notification settings

djom202/Apricot

 
 

Repository files navigation

#Apricot Build Status

Apricot is a micro PHP framework that stands in only one file.

Apricot makes PHP development easy and pleasant, without imposing you any structure or patterns for your application. You're free to develop as you want, since you can use Apricot components anywhere in your code.

##Basic example

<?php

use Apricot\Apricot as App;

App::when('/', function ()
{
    echo "Hello World!";
});

App::run();

##TODO:

  • Write more tests
  • Write some doc

About

The lightweight one-file PHP framework

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%