-
Notifications
You must be signed in to change notification settings - Fork 195
Expand file tree
/
Copy pathcomposer.json
More file actions
105 lines (105 loc) · 2.98 KB
/
composer.json
File metadata and controls
105 lines (105 loc) · 2.98 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "nextcloud/news",
"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": "[email protected]",
"homepage": "https://seanmolenaar.eu",
"role": "Developer"
},
{
"name": "Benjamin Brahmer",
"email": "[email protected]",
"homepage": "https://github.com/grotax",
"role": "Maintainer"
},
{
"name": "Bernhard Posselt",
"email": "[email protected]",
"homepage": "https://bernhard-posselt.com",
"role": "Former Developer"
},
{
"name": "Alessandro Cosentino",
"homepage": "http://algorithmsforthekitchen.com/",
"email": "[email protected]",
"role": "Former Developer"
},
{
"name": "Jan-Christoph Borchardt",
"email": "[email protected]",
"homepage": "http://jancborchardt.net/",
"role": "Former Designer"
}
],
"support": {
"issues": "https://github.com/nextcloud/news/issues",
"source": "https://github.com/nextcloud/news/"
},
"require": {
"php": "^8.2",
"php-feed-io/feed-io": "^v6.2.0",
"arthurhoaro/favicon": "^2.0.1",
"fivefilters/readability.php": "^3.3",
"ext-json": "*",
"ext-simplexml": "*",
"ext-libxml": "*",
"ext-dom": "*",
"ext-curl": "*",
"guzzlehttp/psr7": "^2.8",
"php-http/guzzle7-adapter": "^1.0",
"symfony/html-sanitizer": "^7.3",
"bamarni/composer-bin-plugin": "^1.9"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"squizlabs/php_codesniffer": "^4.0.1",
"phpstan/phpstan": "^1.12.8",
"phpstan/phpstan-doctrine": "^1.5.5",
"phpstan/phpstan-strict-rules": "^1.6.1",
"phpstan/phpstan-phpunit": "^1.4.0",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan-deprecation-rules": "^1.2",
"guzzlehttp/guzzle": "^7.3.0",
"doctrine/dbal": "^3.10.5",
"symfony/console": "^4.4.19",
"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/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"phpstan/extension-installer": true,
"php-http/discovery": false,
"bamarni/composer-bin-plugin": true
}
},
"scripts": {
"scope-dependencies": [
"@composer install --working-dir=vendor-bin/php-scoper --ignore-platform-reqs --no-interaction",
"vendor-bin/php-scoper/vendor/bin/php-scoper add-prefix --force",
"rm -Rf lib/Vendor",
"@php lib-vendor-organizer.php build/ lib/Vendor/ \"OCA\\\\News\\\\Vendor\"",
"rm -Rf build",
"composer dump-autoload"
]
}
}