-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
35 lines (35 loc) · 932 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
{
"name": "leafs/aloe",
"version": "2.0.1",
"description": "Overpowered command line tool for your leaf apps.",
"keywords": ["cli", "console", "cmd", "bash", "leaf", "php"],
"homepage": "https://leafphp.dev/docs/mvc/console.html",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Michael Darko",
"email": "[email protected]",
"homepage": "https://mychi.netlify.app",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Aloe\\": "src"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"illuminate/support": "*",
"leafs/fs": "2.0",
"leafs/mvc-core": "*",
"psy/psysh": "^0.10.9|^0.11",
"symfony/console": "^5.0|^6.0",
"symfony/process": "^5.0|^6.0"
},
"require-dev": {
"leafs/leaf": "*"
}
}