-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 1.03 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
{
"name": "weee-open/crauto",
"type": "project",
"description": "Administration panel, self-service account management for users, user registration and other bits and bobs.",
"minimum-stability": "stable",
"license": "MIT",
"require": {
"league/plates": "3.*",
"twbs/bootstrap": "^4.3",
"jumbojett/openid-connect-php": "^0.8.0",
"ext-ldap": "*",
"ext-ctype": "*",
"ext-mbstring": "*",
"ext-json": "*",
"ext-curl": "*",
"setasign/fpdf": "^1.8",
"setasign/fpdi": "^2.6"
},
"autoload": {
"psr-4": {
"WEEEOpen\\Crauto\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^11.1",
"squizlabs/php_codesniffer": "^3.6"
},
"scripts": {
"test": "vendor/bin/phpunit --configuration tests/phpunit.xml --no-coverage",
"testcov": "vendor/bin/phpunit --configuration tests/phpunit.xml",
"lint": "vendor/bin/phpcs --report=summary src public templates",
"lintlong": "vendor/bin/phpcs src public templates",
"lintfix": "vendor/bin/phpcbf src public templates"
}
}