forked from andrescevp/DpnXmlSitemapBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.3 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
{
"name": "dpn/xml-sitemap-bundle",
"description": "Generates XML sitemaps for your favourite search engine by extracting sitemap information out of the site's routes.",
"keywords": ["sitemap"],
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Björn Fromme",
"email": "[email protected]",
"homepage": "http://www.dreipunktnull.com"
},
{
"name": "Kevin Bond",
"email": "[email protected]",
"homepage": "http://zenstruck.com"
}
],
"require": {
"symfony/framework-bundle": "^2.7|^3.0|^4",
"symfony/twig-bundle": "^2.7|^3.0|^4",
"symfony/dependency-injection": "^2.7|^3.0|^4",
"symfony/templating": "^2.7|^3.0|^4",
"symfony/asset": "^2.7|^3.0|^4"
},
"require-dev": {
"symfony/browser-kit": "^2.7|^3.0|^4",
"symfony/finder": "^2.7|^3.0|^4",
"symfony/console": "^2.7|^3.0|^4",
"symfony/yaml": "^2.7|^3.0|^4",
"mockery/mockery": "^0.9",
"matthiasnoback/symfony-dependency-injection-test": "^0.7.4"
},
"autoload": {
"psr-4": { "Dpn\\XmlSitemapBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}