You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 8, 2024. It is now read-only.
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.
16
14
17
15
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.
30
28
31
29
```bash
32
30
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
55
54
```
56
55
57
56
This directory structure is a blend of Ruby on Rails and Laravel
0 commit comments