forked from LibreBooking/app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
24 lines (24 loc) · 869 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
{
"description": "LibreBooking",
"autoload": {},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"phpcompatibility/php-compatibility": "^9.3",
"kint-php/kint": "^4.1"
},
"require" : {
"php" : ">=8.0",
"smarty/smarty": "^4.2"
},
"scripts": {
"install-tools":"phive install --trust-gpg-keys",
"build":"./tools/phing",
"fix": "./tools/php-cs-fixer fix -v",
"lint": "./tools/php-cs-fixer fix -vv --dry-run",
"test": [
"./tools/phpunit",
"@lint"
],
"sniffer:php8": "phpcs -p ./ --standard=vendor/phpcompatibility/php-compatibility/PHPCompatibility --report-full=./php8-report.log --ignore=./vendor/*,./tools/*,./.git/*,./tpl_c/*,./build/*,./.phpdoc/*,./var/*,./Web/scripts/*,./Web/css/* --runtime-set testVersion 8.0"
}
}