summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorSean Molenaar <SMillerDev@users.noreply.github.com>2019-03-17 08:23:37 +0100
committerBenjamin Brahmer <info@b-brahmer.de>2019-03-17 08:23:37 +0100
commit2698214c4122d4f5f63f26f7a204035fe0d4f211 (patch)
treee1a033654736cc68f698af7110e8e17fdb0c2e55 /composer.json
parentf5e25d2edef3360ed7fcdc1ecc663cfb37b650b7 (diff)
fix/allow CDATA encoding (#428)
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json117
1 files changed, 59 insertions, 58 deletions
diff --git a/composer.json b/composer.json
index 538ecbc70..32c217538 100644
--- a/composer.json
+++ b/composer.json
@@ -1,64 +1,65 @@
{
- "type": "project",
- "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",
- "authors": [
- {
- "name": "Bernhard Posselt",
- "email": "dev@bernhard-posselt.com",
- "homepage": "https://bernhard-posselt.com",
- "role": "Developer"
- },
- {
- "name": "Sean Molenaar",
- "email": "sean@seanmolenaar.eu",
- "homepage": "https://seanmolenaar.eu",
- "role": "Developer"
- },
- {
- "name": "Alessandro Cosentino",
- "homepage": "http://algorithmsforthekitchen.com/",
- "email": "cosenal@gmail.com",
- "role": "Developer"
- },
- {
- "name": "Jan-Christoph Borchardt",
- "email": "hey@jancborchardt.net",
- "homepage": "http://jancborchardt.net/",
- "role": "Designer"
- }
- ],
- "support": {
- "irc": "irc://irc.freenode.org/nextcloud-news",
- "issues": "https://github.com/nextcloud/news/issues",
- "source": "https://github.com/nextcloud/news/"
+ "type": "project",
+ "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",
+ "authors": [
+ {
+ "name": "Bernhard Posselt",
+ "email": "dev@bernhard-posselt.com",
+ "homepage": "https://bernhard-posselt.com",
+ "role": "Developer"
},
- "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": "*"
+ {
+ "name": "Sean Molenaar",
+ "email": "sean@seanmolenaar.eu",
+ "homepage": "https://seanmolenaar.eu",
+ "role": "Developer"
},
- "require-dev": {
- "phpunit/phpunit": "^6.5",
- "squizlabs/php_codesniffer": "^3.3",
- "guzzlehttp/guzzle": "~6.3"
+ {
+ "name": "Alessandro Cosentino",
+ "homepage": "http://algorithmsforthekitchen.com/",
+ "email": "cosenal@gmail.com",
+ "role": "Developer"
},
- "replace": {
- "guzzlehttp/guzzle": "*"
- },
- "autoload": {
- "psr-4": {
- "OCA\\News\\": "lib/"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "OCA\\News\\Tests\\": "tests/"
- }
+ {
+ "name": "Jan-Christoph Borchardt",
+ "email": "hey@jancborchardt.net",
+ "homepage": "http://jancborchardt.net/",
+ "role": "Designer"
+ }
+ ],
+ "support": {
+ "irc": "irc://irc.freenode.org/nextcloud-news",
+ "issues": "https://github.com/nextcloud/news/issues",
+ "source": "https://github.com/nextcloud/news/"
+ },
+ "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": "*",
+ "guzzlehttp/guzzle": "^6.3",
+ "ext-simplexml": "*"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^6.5",
+ "squizlabs/php_codesniffer": "^3.3"
+ },
+ "replace": {
+ "guzzlehttp/guzzle": "*"
+ },
+ "autoload": {
+ "psr-4": {
+ "OCA\\News\\": "lib/"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "OCA\\News\\Tests\\": "tests/"
}
+ }
}