generated from ergebnis/php-package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
60 lines (60 loc) · 1.28 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
{
"name": "ergebnis/http-method",
"description": "Provides constants for HTTP request methods.",
"license": "MIT",
"type": "library",
"keywords": [
"http",
"request",
"method"
],
"authors": [
{
"name": "Andreas Möller",
"email": "am@localheinz.com"
}
],
"homepage": "https://github.com/ergebnis/http-method",
"support": {
"issues": "https://github.com/ergebnis/http-method/issues",
"source": "https://github.com/ergebnis/http-method"
},
"require": {
"php": "^7.4 || ^8.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.28.3",
"ergebnis/license": "^1.2.0",
"ergebnis/php-cs-fixer-config": "^4.5.1",
"phpunit/phpunit": "^9.5.21",
"psalm/plugin-phpunit": "~0.17.0",
"vimeo/psalm": "^4.24"
},
"autoload": {
"psr-4": {
"Ergebnis\\Http\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ergebnis\\Http\\Test\\": "test/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ergebnis/composer-normalize": true
},
"platform": {
"php": "7.4.26"
},
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"composer-normalize": {
"indent-size": 2,
"indent-style": "space"
}
}
}