nextcloud-news/composer.json

65 lines
1.9 KiB
JSON
Raw Normal View History

2014-10-21 22:24:35 +02:00
{
"type": "project",
2016-03-26 01:14:48 +01:00
"license": "AGPL-3.0",
"description": "An RSS/Atom feed reader. Requires Nextcloud backgroundjobs or an updater script to be enabled to update your feeds. See the README.md in the apps top directory",
"homepage": "https://github.com/nextcloud/news",
2014-10-21 22:24:35 +02:00
"authors": [
{
"name": "Bernhard Posselt",
"email": "dev@bernhard-posselt.com",
2014-10-21 22:57:20 +02:00
"homepage": "https://bernhard-posselt.com",
2014-10-21 22:24:35 +02:00
"role": "Developer"
},
{
"name": "Sean Molenaar",
"email": "sean@seanmolenaar.eu",
"homepage": "https://seanmolenaar.eu",
"role": "Developer"
},
2014-10-21 22:24:35 +02:00
{
"name": "Alessandro Cosentino",
2014-10-21 22:57:20 +02:00
"homepage": "http://algorithmsforthekitchen.com/",
2014-10-21 22:24:35 +02:00
"email": "cosenal@gmail.com",
"role": "Developer"
},
{
"name": "Jan-Christoph Borchardt",
"email": "hey@jancborchardt.net",
2014-10-21 22:57:20 +02:00
"homepage": "http://jancborchardt.net/",
2014-10-21 22:24:35 +02:00
"role": "Designer"
}
],
"support": {
"irc": "irc://irc.freenode.org/nextcloud-news",
"issues": "https://github.com/nextcloud/news/issues",
"source": "https://github.com/nextcloud/news/"
2014-10-21 22:24:35 +02:00
},
2014-10-21 22:53:36 +02:00
"require": {
"php": "^7.0",
"ezyang/htmlpurifier": "4.10.0",
"pear/net_url2": "2.2.2",
"riimu/kit-pathjoin": "1.2.0",
"debril/feed-io": "^3.1",
"arthurhoaro/favicon": "^1.2",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"squizlabs/php_codesniffer": "^3.3",
"guzzlehttp/guzzle": "~6.3"
},
"replace": {
"guzzlehttp/guzzle": "*"
},
"autoload": {
"psr-4": {
"OCA\\News\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"OCA\\News\\Tests\\": "tests/"
}
2014-10-21 22:24:35 +02:00
}
2014-10-21 22:53:36 +02:00
}