-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.12 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
{
"name": "personal-galaxy/rss",
"type": "library",
"description": "RSS Reader",
"keywords": ["rss", "reader"],
"homepage": "http://github.com/PersonalGalaxy/RSS",
"license": "MIT",
"authors": [
{
"name": "Baptiste Langlade",
"email": "[email protected]"
}
],
"support": {
"issues": "http://github.com/PersonalGalaxy/RSS/issues"
},
"require": {
"php": "~7.2",
"innmind/event-bus": "^2.1",
"innmind/url": "^2.0",
"innmind/immutable": "^2.8",
"innmind/specification": "^1.0",
"innmind/time-continuum": "^1.1",
"innmind/crawler": "^4.1"
},
"autoload": {
"psr-4": {
"PersonalGalaxy\\RSS\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\PersonalGalaxy\\RSS\\": "tests/",
"Fixture\\PersonalGalaxy\\RSS\\": "fixtures/"
}
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"giorgiosironi/eris": "^0.9.0"
},
"scripts": {
"test": "vendor/bin/phpunit --colors=always"
}
}