forked from LibreBooking/app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.64 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
47
48
49
50
51
{
"description": "LibreBooking",
"autoload": {},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7.1",
"phpcompatibility/php-compatibility": "^9.3.5",
"kint-php/kint": "^4.2.3",
"phpunit/phpunit": "^11.3"
},
"require": {
"php": ">=8.1",
"smarty/smarty": "^4.3",
"stripe/stripe-php": "^10.2",
"monolog/monolog": "^2.9",
"google/recaptcha": "1.2.4",
"gregwar/captcha": "1.*",
"google/apiclient": "^2.0",
"microsoft/microsoft-graph": "^2.0",
"facebook/graph-sdk": "~5.0"
},
"repositories": [
{
"type":"package",
"package": {
"name": "gregwar/captcha",
"version":"1.2.1",
"dist": {
"url": "https://github.com/effgarces/Captcha/archive/refs/heads/master.zip",
"type": "zip"
}
}
}
],
"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",
"phpunit": "./vendor/bin/phpunit",
"test": [
"@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"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}