Skip to content
This repository was archived by the owner on Oct 8, 2024. It is now read-only.

Commit 26efa6e

Browse files
committed
📝 updated readme
1 parent d16c4f3 commit 26efa6e

File tree

1 file changed

+28
-29
lines changed

1 file changed

+28
-29
lines changed

README.MD

Lines changed: 28 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
<p align="center">
22
<br><br>
3-
<img src="https://leaf-docs.netlify.app/images/logo.png" height="100"/>
4-
<h1 align="center">Leaf API v2</h1>
3+
<img src="https://leafphp.dev/logo-circle.png" height="100"/>
54
<br>
6-
<br><br><br>
75
</p>
86

9-
<!-- [![Latest Stable Version](https://poser.pugx.org/leafs/api/v/stable)](https://packagist.org/packages/leafs/api)
10-
[![Total Downloads](https://poser.pugx.org/leafs/api/downloads)](https://packagist.org/packages/leafs/api)
11-
[![License](https://poser.pugx.org/leafs/api/license)](https://packagist.org/packages/leafs/api) -->
12-
137
# Leaf API
148

9+
[![Latest Stable Version](https://poser.pugx.org/leafs/api/v/stable)](https://packagist.org/packages/leafs/api)
10+
[![Total Downloads](https://poser.pugx.org/leafs/api/downloads)](https://packagist.org/packages/leafs/api)
11+
[![License](https://poser.pugx.org/leafs/api/license)](https://packagist.org/packages/leafs/api)
12+
1513
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.
1614

1715
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.
@@ -30,28 +28,29 @@ This will start a new Leaf api project.
3028

3129
```bash
3230
C:.
33-
├───App
34-
│ ├───Console
35-
│ ├───Controllers
36-
│ ├───Database
37-
│ │ ├───Factories
38-
│ │ ├───Migrations
39-
│ │ └───Seeds
40-
│ ├───Helpers
41-
│ ├───Models
42-
│ ├───Routes
43-
│ └───Views
44-
├───Config
45-
│ └───Command
46-
├───Lib
47-
├───public
48-
├───storage
49-
│ ├───app
50-
│ │ └───public
51-
│ ├───framework
52-
│ │ └───views
53-
│ └───logs
54-
└───vendor
31+
├── app
32+
│ ├── console
33+
│ ├── controllers
34+
│ │ └── Auth
35+
│ ├── database
36+
│ │ ├── factories
37+
│ │ ├── migrations
38+
│ │ ├── schema
39+
│ │ └── seeds
40+
│ ├── helpers
41+
│ ├── models
42+
│ ├── routes
43+
│ └── views
44+
├── config
45+
├── lib
46+
├── public
47+
├── storage
48+
│ ├── app
49+
│ │ └── public
50+
│ ├── framework
51+
│ │ └── views
52+
│ └── logs
53+
└── vendor
5554
```
5655

5756
This directory structure is a blend of Ruby on Rails and Laravel

0 commit comments

Comments
 (0)