Code Monkey home page Code Monkey logo

leaf's Introduction



Leaf PHP Framework





Latest Stable Version Total Downloads License

Leaf

Leaf is a PHP micro framework that helps you create clean, simple but powerful web apps and APIs quickly.

Installation

It's recommended that you use Composer to install Leaf.

$ composer require leafs/leaf

This will install Leaf in your project directory.

Basic Usage

This is a simple demmonstration of Leaf's simplicity. After installing Leaf, create an index.php file.

<?php
require __DIR__ . '/../vendor/autoload.php';

// Instantiate Leaf
$leaf = new Leaf\Core\Leaf;
$request = new Leaf\Core\Http\Request;
$response = new Leaf\Core\Http\Response;

// Add routes
$leaf->get('/', function () use($response) {
   $response->renderMarkup('<h5>My first Leaf app</h5>');
});

$leaf->post('/users/add', function () use($response, $request) {
    $name = $request->get('name');
    $response->respond(["message" => $name." has been added"]);
});

$leaf->run();

You may quickly test this using the built-in PHP server:

$ php -S localhost:8000

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.

Ckeckout 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๐Ÿ˜…๐Ÿ˜…๐Ÿ˜…). This let's you seperate API logic, data and "views"(request and response) just like how it's done in MVC.

Checkout the LeafAPI package here

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

View Leaf's docs here

leaf's People

Contributors

mychidarko avatar ftonato avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.