forked from leafsphp/leaf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 926 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "leafs/leaf",
"description": "Leaf is a PHP micro framework that helps you create clean, simple but powerful web apps and APIs quickly.",
"keywords": [
"microframework",
"rest",
"router",
"leaf",
"php",
"framework"
],
"homepage": "https://leafphp.netlify.app/#/",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Michael Darko",
"email": "[email protected]",
"homepage": "https://mychi.netlify.app",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Leaf\\": "src"
}
},
"minimum-stability": "stable",
"require": {
"illuminate/database": "^8.0",
"illuminate/container": "^8.0",
"illuminate/events": "^8.0",
"phpmailer/phpmailer": "^6.2",
"illuminate/view": "^8.0"
}
}