-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.18 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
{
"name": "chiron/http-exceptions",
"description": "Exception classes for Http Exception.",
"license": "MIT",
"type": "library",
"keywords": [
"http",
"exceptions",
"httpexception",
"api",
"problem",
"rfc7231",
"rfc7807"
],
"homepage": "https://github.com/ncou/Chiron-HttpExceptions",
"require": {
"php": "^8.0 || ^8.1"
},
"require-dev": {
"chiron/devtools": "^1.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Chiron\\Http\\Exception\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Chiron\\Tests\\Http\\Exception\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/package-versions-deprecated": true,
"phpstan/extension-installer": true,
"ergebnis/composer-normalize": true,
"captainhook/plugin-composer": true,
"chiron/devtools": true
}
},
"extra": {
"captainhook": {
"force-install": true
},
"chiron/devtools": {
"command-prefix": "dev"
},
"ramsey/conventional-commits": {
"configFile": "conventional-commits.json"
}
}
}