-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
61 lines (61 loc) · 2.47 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
52
53
54
55
56
57
58
59
60
61
{
"name": "ladecadanse/ladecadanse",
"description": "Agenda culturel local",
"type": "project",
"readme": "README.md",
"authors": [
{
"name": "Michel Gaudry",
"email": "michel@ladecadanse.ch",
"role": "Developer"
}
],
"license": "AGPL-3.0-or-later",
"support": {
"issues": "https://github.com/agilare/ladecadanse/issues",
"email": "michel@ladecadanse.ch",
"source": "https://github.com/agilare/ladecadanse.git"
},
"require": {
"php": "7.4.*",
"ext-fileinfo": "*",
"ext-mysqli": "*",
"ext-mbstring": "*",
"ext-gd": "*",
"harvesthq/chosen": "^1.8",
"dimsemenov/magnific-popup": "^1.1",
"fortawesome/font-awesome": "4.7",
"phpmailer/phpmailer": "^6.7",
"vlucas/phpdotenv": "^5.5"
},
"autoload": {
"psr-4": {
"Ladecadanse\\": "librairies"
},
"files": [
"librairies/Utils/utils_functions.php"
]
},
"scripts": {
"sniffer:php74": "phpcs -p ./ --ignore=*/images/*,*/logs/*,*/var/*,*/vendor/*,*/web/* --standard=vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 7.4",
"sniffer:php80": "phpcs -p ./ --ignore=*/images/*,*/logs/*,*/var/*,*/vendor/*,*/web/* --standard=vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 8.0",
"sniffer:php81": "phpcs -p ./ --ignore=*/images/*,*/logs/*,*/var/*,*/vendor/*,*/web/* --standard=vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 8.1",
"sniffer:php82": "phpcs -p ./ --ignore=*/images/*,*/logs/*,*/var/*,*/vendor/*,*/web/* --standard=vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 8.2",
"phpstan": "vendor/bin/phpstan analyse -c phpstan.neon --ansi"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/phpstan": "^1.9",
"filp/whoops": "^2.14",
"symfony/var-dumper": "^5.4",
"codeception/codeception": "^4.2",
"codeception/module-rest": "^1.0.0",
"codeception/module-phpbrowser": "^1.0.0",
"hoa/console": "^3.17",
"codeception/module-asserts": "^2.0",
"phpstan/phpstan-deprecation-rules": "^1.1",
"spaze/phpstan-disallowed-calls": "^2.16",
"rector/rector": "^0.17.1"
}
}