forked from MightyCreak/mesamatrix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (40 loc) · 1001 Bytes
/
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
{
"name": "mesamatrix/mesamatrix",
"description": "Mesamatrix website",
"license": "AGPL-3.0-or-later",
"type": "project",
"homepage": "https://mesamatrix.net",
"authors": [
{
"name": "Romain Failliot",
"email": "romain.failliot@foolstep.com"
}
],
"config": {
"platform": {
"php": "7.4"
}
},
"require": {
"monolog/monolog": "^2",
"suin/php-rss-writer": "^1",
"symfony/console": "^5",
"symfony/error-handler": "^5",
"symfony/http-kernel": "^5",
"symfony/monolog-bridge": "^5",
"symfony/process": "^5"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3",
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"Mesamatrix\\": "src/"
}
},
"scripts": {
"lint": "./vendor/bin/phpcs --standard=ruleset.xml",
"tests": "./vendor/bin/phpunit tests"
}
}