-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathcomposer.json
50 lines (50 loc) · 1.44 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
{
"name": "debril/rss-atom-bundle",
"type": "symfony-bundle",
"description": "RSS / Atom and JSONFeed support for Symfony",
"keywords": ["rss", "atom", "jsonfeed", "feed", "syndication"],
"homepage": "http://debril.org/category/rss-atom-bundle/",
"license": "MIT",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/alexdebril/rss-atom-bundle.git"
}
],
"require": {
"php": ">=7.1",
"symfony/config": "~3.4|~4.0|^5.0|^6.0|^7.0",
"symfony/http-foundation": "~3.4|~4.0|^5.0|^6.0|^7.0",
"symfony/http-kernel": "~3.4|~4.0|^5.0|^6.0|^7.0",
"symfony/dependency-injection": "~3.4|~4.0|^5.0|^6.0|^7.0",
"debril/feed-io": "~3.0|~4.0|~5.0"
},
"require-dev": {
"phpunit/phpunit": "~7.0",
"doctrine/common": "~2.3",
"symfony/validator": ">3.0",
"symfony/finder": ">3.0",
"symfony/browser-kit": ">3.0",
"symfony/yaml": "^4.0|^5.0|^6.0|^7.0",
"symfony/framework-bundle": "^4.3|^5.0|^6.0|^7.0"
},
"autoload": {
"psr-4": {
"Debril\\RssAtomBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Debril\\RssAtomBundle\\Tests\\": "tests/"
}
},
"config": {
"platform": {
"php": "7.1.27"
},
"bin-dir": "bin",
"preferred-install": {
"*": "dist"
}
}
}