-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
74 lines (74 loc) · 1.81 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
{
"name": "phauthentic/problem-details-symfony-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle for the Problem Details for HTTP APIs RFC",
"require": {
"php": "^8.2",
"symfony/http-kernel": "~7.0",
"symfony/serializer": "~7.0",
"symfony/uid": "~7.0",
"symfony/validator": "~7.0"
},
"require-dev": {
"infection/infection": "^0.29.10",
"phpmd/phpmd": "^2.5",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^11.5.0",
"squizlabs/php_codesniffer": "^3.7.2",
"symfony/yaml": "^7.2"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Phauthentic\\Symfony\\ProblemDetails\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phauthentic\\Symfony\\ProblemDetails\\Tests\\": "tests/"
}
},
"config": {
"bin-dir": "bin",
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true
}
},
"scripts": {
"test": [
"phpunit"
],
"infection": [
"infection"
],
"test-coverage": [
"phpunit --coverage-text"
],
"test-coverage-html": [
"phpunit --coverage-html tmp/coverage/"
],
"cscheck": [
"phpcs src/ tests/ -s --standard=phpcs.xml"
],
"csfix": [
"phpcbf src/ tests/"
],
"analyze": [
"phpstan analyse src/"
],
"analyse": [
"phpstan analyse src/"
],
"phpmd": [
"bin/phpmd ./src/ text phpmd.xml"
],
"all": [
"@csfix",
"@cscheck",
"@analyze",
"@phpmd",
"@test"
]
}
}