forked from fossar/selfoss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.91 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "ssilence/selfoss",
"description": "Multipurpose rss reader, live stream, mashup, aggregation web application",
"type": "project",
"require": {
"php": ">= 5.6",
"ext-gd": "*",
"bcosca/fatfree-core": "^3.8",
"bramus/router": "^1.6",
"danielstjules/stringy": "^3.1",
"fossar/guzzle-transcoder": "^0.2.0",
"fossar/htmlawed": "^1.2.4.1",
"fossar/tcpdf-parser": "^6.2",
"guzzlehttp/guzzle": "^6.3",
"guzzlehttp/oauth-subscriber": "^0.6.0",
"guzzlehttp/psr7": "^1.5",
"http-interop/response-sender": "^1.0",
"j0k3r/graby": "2.0.0-alpha.0",
"level-2/dice": "^2.0",
"lordelph/icofileloader": "^2.0",
"mibe/feedwriter": "^1.0",
"monolog/monolog": "^1.0",
"php-http/guzzle6-adapter": "^1.0",
"simplepie/simplepie": "^1.3",
"smottt/wideimage": "^1.1",
"violet/streaming-json-encoder": "^1.1",
"willwashburn/phpamo": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.15",
"php-parallel-lint/php-parallel-lint": "^1.0",
"symfony/phpunit-bridge": "^5.2"
},
"license": "GPL-3.0",
"authors": [
{
"name": "SSilence",
"email": "tobias.zeising@aditu.de"
}
],
"autoload": {
"psr-4": {
"controllers\\": "src/controllers/",
"daos\\": "src/daos/",
"helpers\\": "src/helpers/",
"spouts\\": "src/spouts/",
"Tests\\": "tests/"
}
},
"config": {
"platform": {
"php": "5.6.0"
},
"sort-packages": true
},
"scripts": {
"cs": "php-cs-fixer fix --verbose --dry-run --diff",
"fix": "php-cs-fixer fix --verbose --diff",
"lint": "parallel-lint src tests",
"test": "simple-phpunit --bootstrap tests/bootstrap.php tests"
}
}