Leaf API is a minimal MVC wrapper built on top of Leaf PHP which allows you to build APIs with Leaf, faster and simpler than ever before.
v2 of leaf API packs in a ton of new features with enhanced usability for existing features. It also has better binding with other Leaf libraries as well as external libraries. Also since Leaf doesn't enforce particular systems like Facades in laravel, you can port in any valid PHP library and it should work fine.
It's recommended that you use Composer to install Leaf.
composer create-project leafs/api <project-name>This will start a new Leaf api project.
C:.
├───App
│ ├───Console
│ ├───Controllers
│ ├───Database
│ │ ├───Factories
│ │ ├───Migrations
│ │ └───Seeds
│ ├───Helpers
│ ├───Models
│ ├───Routes
│ └───Views
├───Config
│ └───Command
├───Lib
├───public
├───storage
│ ├───app
│ │ └───public
│ ├───framework
│ │ └───views
│ └───logs
└───vendorThis directory structure is a blend of Ruby on Rails and Laravel
To run your Leaf api application, use
php leaf serveLeafAPI has a very easy to understand documentation which contains information on all operations in LeafAPI.
Since LeafAPI runs on Leaf, you can check out the Leaf PHP Framework documentation here.
The LeafAPI framework is open-source software licensed under the MIT license.
