forked from prestaconcept/PrestaSitemapBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.27 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
{
"name": "presta/sitemap-bundle",
"description": "A symfony 2 bundle that provides tools to build your application sitemap.",
"keywords": ["symfony2", "bundle", "sitemap", "xml", "prestaconcept"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "David Epely",
"homepage": "http://www.prestaconcept.net/",
"role": "Initial developer"
},
{
"name": "Alain Flaus",
"homepage": "http://www.prestaconcept.net/",
"role": "Maintainer, Developer"
}
],
"support": {
"issues": "https://github.com/prestaconcept/PrestaSitemapBundle/issues"
},
"require": {
"php": ">=5.3.0",
"symfony/symfony": "~2.2|~3.0|~4.0"
},
"require-dev": {
"symfony/phpunit-bridge": "~2.7|~3.0|~4.0",
"phpunit/phpunit": "5.*"
},
"suggest": {
"doctrine/doctrine-cache-bundle" : "Allows to store sitemaps in cache"
},
"autoload": {
"psr-4": {
"Presta\\SitemapBundle\\": ""
}
},
"autoload-dev": {
"files": [
"Tests/app/AppKernel.php"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.5.x-dev"
}
}
}