Leaf PHP Framework
Leaf PHP
Leaf is a PHP framework that helps you create clean, simple but powerful web apps and APIs quickly and easily. Leaf introduces a cleaner and much simpler structure to the PHP language while maintaining it's flexibility. With a simple structure and a shallow learning curve, it's an excellent way to rapidly build powerful and high performant web apps and APIs.
Installation
You can easily install Leaf using Composer.
composer require leafs/leaf
This will install Leaf in your project directory.
Basic Usage
This is a simple demonstration of Leaf's simplicity. After installing Leaf, create an index.php file.
require __DIR__ . "vendor/autoload.php";
$app = new Leaf\App;
$auth = new Leaf\Auth;
$auth->connect("host", "user", "pass", "db name");
// Base example
$app->get("/", function() use($app) {
$app->response()->json([
"message" => "Welcome!"
]);
});
// Full login example
$app->post("/auth/login", function() use($app, $auth) {
$credentials = $app->request()->get(["username", "password"]);
$user = $auth->login("users", $credentials, [
"username" => ["username", "max:15"],
"password" => ["text", "NoSpaces", "min:8"],
]);
if (!$user) {
$app->response()->throwErr($auth->errors());
}
$app->response()->json($user);
});
$app->run();
You may quickly test this using the built-in PHP server:
php -S localhost:8000
You can view the full documentation here
Working With MVC
Leaf has recently added a new package to it's collection: LeafMVC. It's an MVC framework built with this package at it's core that let's you create clean, simple but powerful web applications and APIs quickly and easily.
Checkout LeafMVC here
Working with API
Leaf also added a simple framework constructed in an MVCish way, but without the View layer purposely for creating APIs and Libraries. Leaf terms this construct as MRRC(Model Request Response Controller
Checkout the LeafAPI package here
Skeleton
Skeleton is the latest package included in the Leaf family. Skeleton is a customizable and simple to use boilerplate powered by Leaf. Skeleton gives you the power of other setups like Leaf MVC without the restrictions of those full blown frameworks. Use and contribute to Skeleton
Of course, with this core package, you can build your app in any way that you wish to as Leaf contains all the required functionality to do so
here
View Leaf's docsBuilt with