-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
66 lines (66 loc) · 1.69 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "irazasyed/docgen",
"description": "Streamline your Laravel package development with automatic facade documentation using Docgen for Laravel",
"license": "MIT",
"type": "library",
"keywords": [
"irazasyed",
"laravel",
"docgen laravel facade",
"laravel facade documenter",
"documentation generator",
"phpdoc"
],
"authors": [
{
"name": "Irfaq Syed",
"email": "[email protected]",
"role": "Developer"
}
],
"homepage": "https://github.com/irazasyed/docgen",
"require": {
"php": ">=8.0"
},
"require-dev": {
"illuminate/support": "^10",
"pestphp/pest": "^2.0",
"pestphp/pest-plugin-arch": "^2.0",
"pestphp/pest-plugin-mock": "2.x-dev",
"php-parallel-lint/php-parallel-lint": "^1.3",
"rector/rector": "^0.15"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Docgen\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Docgen\\Tests\\": "tests"
}
},
"bin": [
"bin/docgen"
],
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
},
"sort-packages": true
},
"scripts": {
"refactor": "rector --debug",
"test": [
"@test:lint",
"@test:refactor",
"@test:unit"
],
"test:coverage": "pest --coverage --colors=always",
"test:lint": "parallel-lint . --blame --colors --exclude vendor",
"test:refactor": "rector --dry-run",
"test:unit": "pest --colors=always"
}
}