forked from fossar/selfoss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.66 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
{
"name": "ssilence/selfoss",
"description": "Multipurpose rss reader, live stream, mashup, aggregation web application",
"type": "project",
"require": {
"php": ">= 5.6",
"abraham/twitteroauth": "^1.0",
"bcosca/fatfree-core": "dev-selfoss#cc3aa6af9a038dd9d0e136f42d9d18a02e077f39",
"danielstjules/stringy": "^3.1",
"fossar/tcpdf-parser": "^6.2",
"fossar/guzzle-transcoder": "^0.1.0",
"guzzlehttp/guzzle": "^6.3",
"guzzlehttp/psr7": "^1.5",
"fossar/htmlawed": "^1.2.4.1",
"j0k3r/graby": "2.0.0-alpha.0",
"lordelph/icofileloader": "^2.0",
"mibe/feedwriter": "^1.0",
"monolog/monolog": "^1.0",
"natxet/CssMin": "^3.0",
"php-http/guzzle6-adapter": "^1.0",
"simplepie/simplepie": "^1.3",
"smottt/wideimage": "^1.1",
"tedivm/jshrink": "^1.0",
"willwashburn/phpamo": "^1.0",
"ext-gd": "*"
},
"license": "GPL-3.0",
"authors": [
{
"name": "SSilence",
"email": "tobias.zeising@aditu.de"
}
],
"autoload": {
"psr-4": {
"controllers\\": "controllers/",
"daos\\": "daos/",
"helpers\\": "helpers/",
"spouts\\": "spouts/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/fossar/fatfree-core"
}
],
"config": {
"platform": {
"php": "5.6.0"
}
},
"scripts": {
"cs": "php-cs-fixer fix --verbose --dry-run --diff",
"lint": "php-parallel-lint controllers daos helpers spouts templates"
}
}