-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.14 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.14 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
55
56
57
{
"name": "leafs/schema",
"description": "Git for your database",
"keywords": [
"migrations",
"schema",
"database",
"leaf",
"php"
],
"homepage": "https://leafphp.dev/docs/database/files.html",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Michael Darko",
"email": "mickdd22@gmail.com",
"homepage": "https://mychi.netlify.app",
"role": "Developer"
}
],
"bin": [
"bin/leaf"
],
"autoload": {
"psr-4": {
"Leaf\\": "src"
},
"files": [
"src/functions.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"illuminate/support": "*",
"leafs/date": "*",
"leafs/fs": "*",
"symfony/yaml": "*",
"leafs/sprout": "*"
},
"require-dev": {
"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
}
}
}