forked from aaronpk/picofeed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 908 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
38
39
{
"name": "orlo/picofeed",
"description": "library to handle RSS/Atom feeds",
"homepage": "https://github.com/orlo/picofeed",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Frédéric Guillot"
}
],
"replace": {
"miniflux/picofeed": "0.1.35",
"p3k/picofeed": "*"
},
"require": {
"php": ">=7.4",
"ext-iconv": "*",
"ext-dom": "*",
"ext-xml": "*",
"ext-libxml": "*",
"ext-SimpleXML": "*",
"laminas/laminas-xml": "^1.2"
},
"require-dev" : {
"phpdocumentor/reflection-docblock": "2.0.4",
"symfony/yaml": "2.8.7",
"phpunit/phpunit" : "*"
},
"suggest": {
"ext-curl": "PicoFeed will use cURL if present"
},
"autoload": {
"psr-0": {"PicoFeed": "lib/"}
},
"bin" : [
"picofeed"
]
}