summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 3449e72fd6667c5e12bd634fed4e7937a5d0dde4 (plain)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
  "type": "project",
  "license": "AGPL-3.0",
  "description": "An RSS/Atom feed reader. Requires Nextcloud background jobs 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": "Sean Molenaar",
      "email": "sean@seanmolenaar.eu",
      "homepage": "https://seanmolenaar.eu",
      "role": "Developer"
    },
    {
      "name": "Benjamin Brahmer",
      "email": "info@b-brahmer.de",
      "homepage": "https://github.com/grotax",
      "role": "Maintainer"
    },
    {
      "name": "Bernhard Posselt",
      "email": "dev@bernhard-posselt.com",
      "homepage": "https://bernhard-posselt.com",
      "role": "Former Developer"
    },
    {
      "name": "Alessandro Cosentino",
      "homepage": "http://algorithmsforthekitchen.com/",
      "email": "cosenal@gmail.com",
      "role": "Former Developer"
    },
    {
      "name": "Jan-Christoph Borchardt",
      "email": "hey@jancborchardt.net",
      "homepage": "http://jancborchardt.net/",
      "role": "Former Designer"
    }
  ],
  "support": {
    "issues": "https://github.com/nextcloud/news/issues",
    "source": "https://github.com/nextcloud/news/"
  },
  "require": {
    "php": "^7.2 || 8.0.x",
    "ezyang/htmlpurifier": "^4.13.0",
    "pear/net_url2": "2.2.2",
    "riimu/kit-pathjoin": "1.2.0",
    "debril/feed-io": "^v4.7.9",
    "arthurhoaro/favicon": "^1.3.2",
    "andreskrey/readability.php": "^2.1",
    "ext-json": "*",
    "ext-simplexml": "*",
    "ext-libxml": "*",
    "ext-dom": "*",
    "ext-curl": "*"
  },
  "require-dev": {
    "phpunit/phpunit": "9.5.*",
    "squizlabs/php_codesniffer": "^3.5.6",
    "phpstan/phpstan": "^0.12.43",
    "vimeo/psalm": "^4.0",
    "christophwurst/nextcloud": "^v21.0.0-beta8",
    "guzzlehttp/guzzle": "^7.2",
    "doctrine/dbal": "^3.0",
    "symfony/console": "^4.4.18",
    "psr/log": "^1.1.0"
  },
  "replace": {
    "guzzlehttp/guzzle": "*",
    "psr/log": "*",
    "symfony/console": "*"
  },
  "autoload": {
    "psr-4": {
      "OCA\\News\\": "lib/"
    }
  },
  "autoload-dev": {
    "psr-4": {
      "OCA\\News\\Tests\\": "tests/"
    }
  }
}