-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
38 lines (38 loc) · 1009 Bytes
/
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
{
"name": "symfony/web-link",
"type": "library",
"description": "Manages links between resources",
"keywords": ["link", "psr13", "http", "http2", "preload", "prefetch", "prerender", "dns-prefetch", "push", "performance"],
"homepage": "https://symfony.com",
"license": "MIT",
"authors": [
{
"name": "Kévin Dunglas",
"email": "[email protected]"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"provide": {
"psr/link-implementation": "1.0|2.0"
},
"require": {
"php": ">=8.2",
"psr/link": "^1.1|^2.0"
},
"require-dev": {
"symfony/http-kernel": "^6.4|^7.0"
},
"conflict": {
"symfony/http-kernel": "<6.4"
},
"autoload": {
"psr-4": { "Symfony\\Component\\WebLink\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"minimum-stability": "dev"
}