-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
55 lines (55 loc) · 1.33 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "leafs/cli",
"description": "A simple command line tool for installing and interacting with your leaf apps",
"homepage": "https://cli.leafphp.dev",
"version": "v4.0-beta",
"keywords": [
"leaf",
"php",
"installer",
"deploy",
"server",
"database"
],
"license": "MIT",
"authors": [
{
"name": "Michael Darko",
"email": "mickdd22@gmail.com",
"homepage": "https://mychi.netlify.app",
"role": "Developer"
}
],
"require": {
"ext-json": "*",
"leafs/fs": "^2.0",
"leafs/sprout": "^0.2",
"psy/psysh": "*"
},
"bin": [
"bin/leaf"
],
"autoload": {
"psr-4": {
"Leaf\\Console\\": "src/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.66",
"leafs/alchemy": "^2.0"
},
"scripts": {
"alchemy": "./vendor/bin/alchemy setup",
"test": "./vendor/bin/alchemy setup --test",
"lint": "./vendor/bin/alchemy setup --lint",
"actions": "./vendor/bin/alchemy setup --actions"
}
}