-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 915 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
36
37
38
39
40
41
42
{
"name": "erikaheidi/autodocs",
"description": "Reference Documentation Builder",
"license": "MIT",
"homepage": "https://github.com/erikaheidi/autodocs",
"keywords": ["documentation", "cli"],
"autoload": {
"psr-4": {
"Autodocs\\": "src/"
}
},
"require": {
"php": "^8.2",
"minicli/minicli": "^4.2",
"minicli/stencil": "^0.2.1"
},
"require-dev": {
"pestphp/pest": "^2.16",
"mockery/mockery": "^1.6",
"laravel/pint": "^1.13"
},
"scripts": {
"lint": [
"pint"
],
"test:lint": [
"pint --test"
],
"test:unit": [
"pest"
],
"test": [
"@test:lint",
"@test:unit"
]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}