Skip to content
/ Neutrino Public

Neutrino is a PHP 5.4 micro framework that helps you quickly write simple yet powerful web applications and APIs. Neutrino is easy to use for both beginners and professionals.

Notifications You must be signed in to change notification settings

lytc/Neutrino

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

THIS PROJECT DOESN'T MAINTAIN ANYMORE

I'M RECOMMEND TO USE LAZY FRAMEWORK INSTEAD

Neutrino

Neutrino is a PHP 5.4 micro framework that helps you quickly write simple yet powerful web applications and APIs. Neutrino is easy to use for both beginners and professionals.

Release infomation

Neutrino framework release 1.0-dev3

THIS RELEASE IS A DEVELOPMENT RELEASE AND NOT INTENDED FOR PRODUCTION USE. PLEASE USE AT YOUR OWN RISK

##"Hello World" application

<?php
use neutrino\Neutrino,
    neutrino\App;

require_once 'neutrino/Neutrino.php';

Neutrino::registerAutoLoad();
$app = new App();

$app->get('/', function() {
    echo "Hello World!";
});

$app->run();

About

Neutrino is a PHP 5.4 micro framework that helps you quickly write simple yet powerful web applications and APIs. Neutrino is easy to use for both beginners and professionals.

Resources

Stars

Watchers

Forks

Packages

No packages published