-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
49 lines (49 loc) · 1.02 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
{
"name": "teapot/status-code",
"description": "PHP HTTP Response Status code library",
"license": "MIT",
"type": "library",
"keywords": [
"http"
],
"authors": [
{
"name": "Barney Hanlon",
"email": "barney@shrikeh.net"
},
{
"name": "Andreas Möller",
"email": "am@localheinz.com"
}
],
"homepage": "https://github.com/teapot-php/status-code",
"require": {
"php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.45.0",
"ergebnis/php-cs-fixer-config": "^6.45.0",
"phpstan/phpstan": "^2.1.11",
"phpstan/phpstan-deprecation-rules": "^2.0.1",
"phpstan/phpstan-strict-rules": "^2.0.4"
},
"autoload": {
"psr-4": {
"Teapot\\StatusCode\\": "src"
}
},
"archive": {
"exclude": [
"/*, !/src"
]
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"platform": {
"php": "7.4.33"
},
"sort-packages": true
}
}