-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.34 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.34 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "leafs/aloe",
"version": "4.5.4",
"description": "Overpowered command line tool for your leaf apps.",
"keywords": [
"cli",
"console",
"bash",
"leaf",
"php"
],
"homepage": "https://leafphp.dev/docs/mvc/console.html",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Michael Darko",
"email": "mickdd22@gmail.com",
"homepage": "https://mychi.netlify.app",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Aloe\\": "src"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"illuminate/support": "*",
"leafs/fs": "*",
"leafs/mvc-core": "*",
"psy/psysh": "^0.12",
"symfony/console": "^5.0|^6.0",
"symfony/process": "^5.0|^6.0"
},
"require-dev": {
"leafs/leaf": "*",
"leafs/alchemy": "*",
"friendsofphp/php-cs-fixer": "^3.66"
},
"scripts": {
"alchemy": "./vendor/bin/alchemy setup",
"test": "./vendor/bin/alchemy setup --test",
"lint": "./vendor/bin/alchemy setup --lint",
"actions": "./vendor/bin/alchemy setup --actions"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}