-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
50 lines (50 loc) · 1022 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
40
41
42
43
44
45
46
47
48
49
50
{
"name": "vipnytt/opmlparser",
"description": "OPML parser",
"type": "library",
"keywords": [
"OPML",
"parser",
"render",
"XML"
],
"homepage": "https://github.com/VIPnytt/OPMLParser",
"license": "MIT",
"authors": [
{
"name": "VIP nytt",
"email": "[email protected]",
"role": "creator"
},
{
"name": "Jan-Petter Gundersen",
"email": "[email protected]",
"role": "developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/VIPnytt/OPMLParser/issues",
"source": "https://github.com/VIPnytt/OPMLParser"
},
"require": {
"php": ">=5.6.0",
"ext-dom": "*",
"ext-simplexml": "*"
},
"require-dev": {
"phpunit/phpunit": ">=4.0",
"codeclimate/php-test-reporter": ">=0.2.0"
},
"autoload": {
"psr-4": {
"vipnytt\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"vipnytt\\OPMLParser\\Tests\\": "tests/"
}
},
"minimum-stability": "stable"
}