-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
72 lines (72 loc) · 2.04 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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "elao/accesseo",
"description": "Provide accessibility and SEO insights of your page in Symfony profiler",
"keywords": [
"seo",
"accessibility",
"symfony",
"symfony-profiler"
],
"type": "symfony-bundle",
"homepage": "https://github.com/Elao/accesseo",
"license": "MIT",
"authors": [
{
"name": "Elao",
"email": "[email protected]"
},
{
"name": "Anne-Laure de Boissieu",
"email": "[email protected]",
"homepage": "https://github.com/al2b"
},
{
"name": "Amélie Defrance",
"email": "[email protected]",
"homepage": "https://github.com/ameliedefrance"
}
],
"autoload": {
"psr-4": {
"Elao\\Bundle\\Accesseo\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Elao\\Bundle\\Accesseo\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"prefer-stable": true,
"require": {
"php": ">=7.4",
"brick/schema": "^0.1.1",
"symfony/css-selector": "^4.4|^5.1",
"symfony/dependency-injection": "^4.4|^5.1",
"symfony/dom-crawler": "^4.4|^5.1",
"symfony/http-client-contracts": "^1.1|^2.0",
"symfony/http-foundation": "^4.4|^5.1",
"symfony/http-kernel": "^4.4|^5.1",
"symfony/service-contracts": "^1.1|^2.0",
"symfony/string": "^5.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.17",
"symfony/console": "^4.4|^5.1",
"symfony/filesystem": "^4.4|^5.1",
"symfony/http-client": "^4.4|^5.1",
"symfony/phpunit-bridge": "^5.2",
"symfony/twig-bridge": "^4.4|^5.1",
"symfony/web-profiler-bundle": "^4.4|^5.1"
},
"suggest": {
"symfony/http-client": "HTTP Client implementation, used for broken link detection."
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}