-
Notifications
You must be signed in to change notification settings - Fork 103
/
composer.json
53 lines (53 loc) · 1.68 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
{
"name": "presta/sitemap-bundle",
"description": "A Symfony bundle that provides tools to build your application sitemap.",
"keywords": ["symfony", "bundle", "sitemap", "xml", "prestaconcept"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Prestaconcept",
"homepage": "http://www.prestaconcept.net/"
}
],
"support": {
"issues": "https://github.com/prestaconcept/PrestaSitemapBundle/issues"
},
"require": {
"php": ">=7.2.5|>=8.0.2",
"ext-simplexml": "*",
"symfony/console": "^5.4|^6.0|^7.0",
"symfony/framework-bundle": "^5.4|^6.0|^7.0"
},
"require-dev": {
"doctrine/annotations": "^1.0",
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^7.5|^8.0",
"squizlabs/php_codesniffer": "^3.5",
"symfony/messenger": "^5.4|^6.0|^7.0",
"symfony/browser-kit": "^5.4|^6.0|^7.0",
"symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
"symfony/yaml": "^5.4|^6.0|^7.0"
},
"autoload": {
"psr-4": {
"Presta\\SitemapBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Presta\\SitemapBundle\\Tests\\Unit\\": "tests/Unit",
"Presta\\SitemapBundle\\Tests\\Integration\\Tests\\": "tests/Integration/tests",
"Presta\\SitemapBundle\\Tests\\Integration\\": "tests/Integration/src",
"Presta\\SitemapBundle\\Tests\\Standards\\": "tests/Standards"
}
},
"extra": {
"branch-alias": {
"4.x": "4.x-dev",
"3.x": "3.x-dev",
"2.x": "2.x-dev",
"1.x": "1.x-dev"
}
}
}