-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.38 KB
/
Copy pathcomposer.json
File metadata and controls
60 lines (60 loc) · 1.38 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
58
59
60
{
"name": "leafs/alchemy",
"description": "Integrated QA pipeline for your PHP apps",
"homepage": "https://leafphp.dev/docs/tooling/testing",
"keywords": [
"leaf",
"php",
"testing",
"test",
"linting",
"actions"
],
"license": "MIT",
"authors": [
{
"name": "Michael Darko",
"email": "mickdd22@gmail.com",
"homepage": "https://mychi.netlify.app",
"role": "Developer"
}
],
"require": {
"ext-json": "*",
"leafs/fs": "^5.0",
"leafs/sprout": "^5.0",
"symfony/yaml": "*",
"php": "^8.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "*",
"laravel/pint": "*",
"pestphp/pest": "*"
},
"bin": [
"bin/alchemy"
],
"autoload": {
"psr-4": {
"Leaf\\Alchemy\\": "src/"
},
"files": [
"src/functions.php"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"alchemy": "@php bin/alchemy setup",
"test": "@php bin/alchemy test",
"lint": "@php bin/alchemy lint",
"fmt": "@php bin/alchemy fmt",
"ci": "@php bin/alchemy ci"
}
}