forked from LibreBooking/app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
28 lines (28 loc) · 1018 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
{
"description": "LibreBooking",
"autoload": {},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7.1",
"phpcompatibility/php-compatibility": "^9.3.5",
"kint-php/kint": "^4.2.3"
},
"require" : {
"php": ">=7.4",
"smarty/smarty": "^4.3",
"stripe/stripe-php": "^10.2",
"monolog/monolog": "^2.9",
"google/recaptcha": "1.2.4",
"gregwar/captcha": "1.*"
},
"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"
}
}