-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.61 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
{
"name": "wyrihaximus/react-http-middleware-with-headers",
"description": "react/http middleware to add headers to a response",
"license": "MIT",
"authors": [
{
"name": "Cees-Jan Kiewiet",
"email": "ceesjank@gmail.com"
}
],
"require": {
"php": "^8.2",
"ext-random": "^8.2",
"psr/http-message": "^1.1",
"react/promise": "^3",
"thecodingmachine/safe": "^2.5"
},
"require-dev": {
"react/http": "^1.10",
"wyrihaximus/async-test-utilities": "^8.0.5"
},
"suggest": {
"wyrihaximus-net/x-headers": "Set of Nerdy headers I use in all my services for shits and giggles"
},
"autoload": {
"psr-4": {
"WyriHaximus\\React\\Http\\Middleware\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WyriHaximus\\React\\Tests\\Http\\Middleware\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"icanhazstring/composer-unused": true,
"infection/extension-installer": true,
"ocramius/package-versions": true
},
"platform": {
"php": "8.2.13"
},
"sort-packages": true
},
"scripts": {
"post-install-cmd": [
"composer normalize",
"composer update --lock --no-scripts"
],
"post-update-cmd": [
"composer normalize",
"composer update --lock --no-scripts"
]
}
}