-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
61 lines (61 loc) · 2.01 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
{
"name": "lcobucci/content-negotiation-middleware",
"description": "A PSR-15 middleware to handle content negotiation",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Luís Cobucci",
"email": "[email protected]"
}
],
"require": {
"php": "~8.3.0 || ~8.4.0",
"ext-json": "*",
"fig/http-message-util": "^1.1.5",
"psr/http-factory": "^1.1",
"psr/http-message": "^2.0",
"psr/http-server-middleware": "^1.0.2"
},
"require-dev": {
"infection/infection": "^0.29",
"jms/serializer": "^3.30.0",
"laminas/laminas-diactoros": "^3.4.0",
"lcobucci/coding-standard": "^11.1",
"league/plates": "^3.5.0",
"middlewares/negotiation": "^2.1",
"phpstan/extension-installer": "^1.4.1",
"phpstan/phpstan": "^1.12.4",
"phpstan/phpstan-deprecation-rules": "^1.2.1",
"phpstan/phpstan-phpunit": "^1.4.0",
"phpstan/phpstan-strict-rules": "^1.6.1",
"phpunit/phpunit": "^11.3",
"twig/twig": "^3.14.1"
},
"suggest": {
"jms/serializer": "For content formatting using a more flexible serializer",
"laminas/laminas-diactoros": "For concrete implementation of PSR-7",
"league/plates": "For content formatting using Plates as template engine",
"middlewares/negotiation": "For acceptable format identification",
"twig/twig": "For content formatting using Twig as template engine"
},
"autoload": {
"psr-4": {
"Lcobucci\\ContentNegotiation\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Lcobucci\\ContentNegotiation\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true
},
"preferred-install": "dist",
"sort-packages": true
}
}