forked from tadaspaplauskas/picoFeed
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
35 lines (35 loc) · 841 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": "fguillot/picofeed",
"description": "Modern library to handle RSS/Atom feeds",
"homepage": "https://github.com/fguillot/picoFeed",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Frédéric Guillot"
}
],
"require": {
"php": ">=5.3.0",
"ext-iconv": "*",
"ext-dom": "*",
"ext-xml": "*",
"ext-libxml": "*",
"ext-SimpleXML": "*",
"zendframework/zendxml": "^1.0"
},
"require-dev" : {
"phpdocumentor/reflection-docblock": "2.0.4",
"symfony/yaml": "2.8.7",
"phpunit/phpunit" : "4.8.26"
},
"suggest": {
"ext-curl": "PicoFeed will use cURL if present"
},
"autoload": {
"psr-0": {"PicoFeed": "lib/"}
},
"bin" : [
"picofeed"
]
}