-
Notifications
You must be signed in to change notification settings - Fork 345
/
Copy pathcomposer.json
69 lines (69 loc) · 2.18 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
63
64
65
66
67
68
69
{
"name": "ssilence/selfoss",
"description": "Multipurpose rss reader, live stream, mashup, aggregation web application",
"type": "project",
"require": {
"php": ">= 7.4.0",
"ext-gd": "*",
"bcosca/fatfree-core": "^3.8",
"bramus/router": "^1.6",
"fossar/guzzle-transcoder": "^0.3.0",
"fossar/htmlawed": "^1.2.4.1",
"guzzlehttp/guzzle": "^7.0",
"guzzlehttp/oauth-subscriber": "^0.6.0",
"guzzlehttp/psr7": "^2.0",
"http-interop/response-sender": "^1.0",
"j0k3r/graby": "^2.0",
"lordelph/icofileloader": "^2.0",
"mibe/feedwriter": "^1.0",
"monolog/monolog": "^2.0",
"php-http/guzzle7-adapter": "^1.0",
"psr/container": "^1.1",
"psr/simple-cache": "^1.0",
"simplepie/simplepie": "^1.8",
"slince/di": "^3.2",
"smottt/wideimage": "^1.1",
"symfony/cache": "^5.4",
"symfony/polyfill-php80": "^1.26",
"violet/streaming-json-encoder": "^1.1",
"vstelmakh/url-highlight": "^3.0",
"willwashburn/phpamo": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"php-parallel-lint/php-parallel-lint": "^1.0",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"symfony/phpunit-bridge": "^7.0"
},
"license": "GPL-3.0",
"authors": [
{
"name": "SSilence",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"controllers\\": "src/controllers/",
"daos\\": "src/daos/",
"helpers\\": "src/helpers/",
"spouts\\": "src/spouts/",
"Tests\\": "tests/"
}
},
"config": {
"platform": {
"php": "7.4.0"
},
"allow-plugins": false,
"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",
"phpstan": "phpstan analyse --memory-limit 512M",
"test": "simple-phpunit --bootstrap tests/bootstrap.php tests"
}
}