forked from fossar/selfoss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.74 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.74 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
{
"name": "ssilence/selfoss",
"description": "Multipurpose rss reader, live stream, mashup, aggregation web application",
"type": "project",
"require": {
"php": ">= 5.6",
"bcosca/fatfree-core": "^3.7.0",
"danielstjules/stringy": "^3.1",
"fossar/tcpdf-parser": "^6.2",
"fossar/guzzle-transcoder": "^0.2.0",
"guzzlehttp/guzzle": "^6.3",
"guzzlehttp/oauth-subscriber": "^0.3.0",
"guzzlehttp/psr7": "^1.5",
"fossar/htmlawed": "^1.2.4.1",
"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",
"willwashburn/phpamo": "^1.0",
"ext-gd": "*"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.0",
"friendsofphp/php-cs-fixer": "^2.15",
"phpunit/phpunit": "^5.7"
},
"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"
}
},
"scripts": {
"cs": "php-cs-fixer fix --verbose --dry-run --diff",
"fix": "php-cs-fixer fix --verbose --diff",
"lint": "parallel-lint src tests",
"test": "phpunit --bootstrap vendor/autoload.php tests"
}
}