-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
87 lines (87 loc) · 2.43 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "waterwolfdev/waterwolf-site",
"type": "project",
"description": "The new WaterWolf web site.",
"require": {
"php": "^8.3",
"ext-curl": "*",
"ext-fileinfo": "*",
"ext-gd": "*",
"ext-pdo": "*",
"ext-redis": "*",
"doctrine/dbal": "^4",
"google/recaptcha": "1.3",
"guzzlehttp/guzzle": "^7.8",
"intervention/image": "^3.3",
"laminas/laminas-escaper": "^2.13",
"league/flysystem": "^3.26",
"league/flysystem-aws-s3-v3": "^3.26",
"league/flysystem-sftp-v3": "^3.26",
"mezzio/mezzio-session": "^1.14",
"mezzio/mezzio-session-cache": "^1.12",
"monolog/monolog": "^3.5",
"php-di/php-di": "^7.0",
"robmorgan/phinx": "^0.16.0",
"slim/http": "^1.3",
"slim/slim": "^4.12",
"spatie/guzzle-rate-limiter-middleware": "^2.0",
"spomky-labs/otphp": "^11.2",
"symfony/amazon-mailer": "^7.0",
"symfony/cache": "^7.0",
"symfony/console": "^7.0",
"symfony/filesystem": "^7.0",
"symfony/mailer": "^7.0",
"symfony/process": "^7.0",
"twig/twig": "^3.8"
},
"require-dev": {
"filp/whoops": "^2.15",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/phpstan": "^1.10",
"roave/security-advisories": "dev-latest",
"slevomat/coding-standard": "^8.14",
"squizlabs/php_codesniffer": "^3.8",
"staabm/annotate-pull-request-from-checkstyle": "^1.8",
"symfony/var-dumper": "^7.0"
},
"replace": {
"symfony/polyfill-php71": "1.99",
"symfony/polyfill-php72": "1.99",
"symfony/polyfill-php73": "1.99",
"symfony/polyfill-php74": "1.99",
"symfony/polyfill-php80": "1.99",
"symfony/polyfill-php81": "1.99",
"symfony/polyfill-php82": "1.99",
"symfony/polyfill-php83": "1.99"
},
"config": {
"discard-changes": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"App\\": "backend/src"
}
},
"scripts": {
"cleanup-and-test": [
"@phpcbf",
"@phplint",
"@phpstan",
"@phpcs"
],
"ci": [
"parallel-lint . --exclude vendor --checkstyle | cs2pr",
"phpstan analyze --memory-limit=-1 --error-format=checkstyle | cs2pr",
"phpcs --report=checkstyle | cs2pr"
],
"phpcbf": "phpcbf",
"phpcs": "phpcs",
"phplint": "parallel-lint . --exclude vendor",
"phpstan": "phpstan analyze --memory-limit=-1"
}
}