forked from WEEE-Open/WEEEhire-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.19 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
{
"name": "weee-open/weeehire",
"type": "project",
"description": "WEEEHire is back",
"minimum-stability": "stable",
"license": "MIT",
"require": {
"league/plates": "3.*",
"jumbojett/openid-connect-php": "^0.8.0",
"ext-ldap": "*",
"ext-mbstring": "*",
"ext-json": "*",
"phpmyadmin/motranslator": "^4.0",
"willdurand/negotiation": "^3.0",
"ext-sqlite3": "*",
"phpmailer/phpmailer": "^6.1",
"laminas/laminas-diactoros": "^2.2",
"laminas/laminas-httphandlerrunner": "^1.1",
"sabre/vobject": "^4.0"
},
"suggest": {
"ext-apcu": "Caches LDAP results avoiding continuous lookups"
},
"config": {
"platform": {
"php": "7.3"
}
},
"require-dev": {
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"WEEEOpen\\WEEEHire\\": "src/",
"WEEEOpen\\WEEEHire\\tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --configuration tests/phpunit.xml --coverage-text",
"lint": "vendor/bin/phpcs --report=summary src public templates",
"lintlong": "vendor/bin/phpcs src public templates",
"lintfix": "vendor/bin/phpcbf src public templates"
}
}