forked from WEEE-Open/tarallo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 1.14 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
{
"name": "weeeopen/tarallo",
"description": "Incredibly granular inventory management system",
"type": "project",
"license": "AGPL-3.0",
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"WEEEOpen\\Tarallo\\": "src/",
"WEEEOpen\\TaralloTest\\": "tests/"
}
},
"config": {
"platform": {
"php": "7.4"
}
},
"require": {
"php": "^7.1",
"ext-json": "*",
"ext-mysqlnd": "*",
"ext-pdo": "*",
"nikic/fast-route": "^1.2",
"willdurand/negotiation": "^2.3",
"league/plates": "^3.3",
"relay/relay": "~2.0",
"psr/http-message": "^1.0",
"psr/http-server-middleware": "^1.0",
"laminas/laminas-diactoros": "^2.2",
"laminas/laminas-httphandlerrunner": "^1.1",
"jumbojett/openid-connect-php": "^0.8.0",
"pds/skeleton": "^1.0.0"
},
"suggest": {
"ext-apcu": "*"
},
"require-dev": {
"phpunit/phpunit": "~9.0.0",
"squizlabs/php_codesniffer": "^3.6"
},
"scripts": {
"lint": "phpcs --report=summary --ignore=*.min.css src public",
"lintfix": "phpcbf --ignore=*.min.css src public",
"test": "phpunit --configuration tests/phpunit.xml"
}
}