-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
86 lines (86 loc) · 2.34 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "litalico-engineering/eg-r2",
"type": "library",
"description": "Easy request validation and route generation from open API specifications (for Laravel)",
"version": "1.0.1",
"license": ["MIT"],
"require": {
"php": "^8.2|^8.3",
"illuminate/console": "^11.0",
"illuminate/support": "^11.0",
"illuminate/validation": "^11.0",
"nette/php-generator": "^4.1",
"zircote/swagger-php": "^4.8"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.46",
"orchestra/testbench": "^9.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^11.2",
"smeghead/php-vendor-credits": "^0.0.5",
"spaze/phpstan-disallowed-calls": "^3.1"
},
"autoload": {
"psr-4": {
"Litalico\\EgR2\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"dont-discover": [],
"providers": [
"Litalico\\EgR2\\Providers\\GenerateRouteServiceProvider"
]
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"platform": {
"php": "8.2.2"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"test": [
"./vendor/bin/phpunit --configuration phpunit.xml"
],
"lint": [
"./vendor/bin/phpstan analyze"
],
"fix-cs": [
"php-cs-fixer fix --config=.php-cs-fixer.dist.php --verbose"
],
"coverage": [
"./vendor/bin/phpunit --configuration phpunit.xml --coverage-clover coverage.xml"
]
},
"scripts-descriptions": {
"test": "Runs all tests using PHPUnit",
"lint": "Runs Code Static Analysis using PHPStan",
"fix-cs": "Fixes PHP code style using PHP-CS-Fixer",
"coverage": "Obtaining Code Coverage"
},
"archive": {
"exclude": [
".gitignore",
".gitattributes",
"vendor",
".git",
"tests",
".github",
".octocov.yml",
".php-cs-fixer.dist.php",
".tagpr",
"phpstan.neon",
"phpunit.xml"
]
}
}