-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
37 lines (37 loc) · 926 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
{
"name": "skuola/sitemap-bundle",
"description": "Sitemap generator for Symfony 2 project",
"keywords": ["sitemap", "bundle", "symfony", "sitemap bundle", "skuola", "sitemap generator", "generator"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Oreste Di Modugno",
"email": "oreste.dimodugno@skuola.net"
},
{
"name": "Chiarillo Massimo",
"email": "chiarillo.massimo@skuola.net"
}
],
"require": {
"symfony/framework-bundle": "~2.7",
"samdark/sitemap": "~2.0",
"symfony/console": "~2.7",
"doctrine/common": "~2.5",
"symfony/property-access": "~2.7"
},
"require-dev": {
"phpunit/phpunit": "^4.7",
"mockery/mockery": "dev-master"
},
"autoload": {
"psr-0": { "Skuola\\SitemapBundle": "" }
},
"target-dir": "Skuola/SitemapBundle",
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}