forked from alexdebril/rss-atom-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 881 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
{
"name": "debril/rss-atom-bundle",
"type": "symfony-bundle",
"description": "RSS and Atom support for Symfony 2",
"keywords": ["rss", "atom"],
"license": "LGPL",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/alexdebril/rss-atom-bundle.git"
}
],
"require": {
"php": ">=5.3.3",
"symfony/config": "~2.2",
"symfony/options-resolver": "~2.2"
},
"require-dev": {
"phpunit/phpunit": "~3.7",
"doctrine/common": "~2.3",
"symfony/framework-bundle": "~2.3",
"symfony/finder": "~2.3",
"symfony/form": "~2.3",
"symfony/browser-kit": "~2.3"
},
"autoload": {
"psr-0": {
"Debril\\RssAtomBundle": ""
}
},
"target-dir": "Debril/RssAtomBundle",
"config": {
"bin-dir": "bin"
}
}