forked from alexdebril/feed-io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 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
{
"name": "debril/feed-io",
"description": "PHP library built to consume and serve JSONFeed / RSS / Atom feeds",
"keywords": ["rss", "atom","jsonfeed", "feed", "news", "CLI", "client"],
"homepage": "https://feed-io.net",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Alexandre Debril",
"email": "[email protected]"
}
],
"bin" : [
"bin/feedio"
],
"require": {
"php": ">=7.1",
"guzzlehttp/guzzle": "~6.2",
"psr/log": "~1.0",
"symfony/console": "~3.4|~4.0"
},
"require-dev": {
"phpunit/phpunit": "~6.2.0",
"monolog/monolog": "1.*",
"friendsofphp/php-cs-fixer": "^2.4"
},
"suggest": {
"monolog/monolog": "Allows to handle logs"
},
"autoload": {
"psr-4": {"FeedIo\\": "src/FeedIo"}
},
"scripts": {
"install-hook": "chmod +x pre-commit.sh && cp pre-commit.sh .git/hooks/pre-commit",
"pre-autoload-dump": "composer install-hook"
},
"config": {
"preferred-install": {
"*": "dist"
}
}
}