-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
executable file
·106 lines (106 loc) · 2.67 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "skaut/kissj",
"description": "Scout registration system for jamborees",
"keywords": [
"registraton",
"system",
"scouts",
"skaut",
"kiss"
],
"homepage": "https://github.com/SkautDevs/kissj",
"license": "MIT",
"authors": [
{
"name": "Lung",
"email": "[email protected]"
},
{
"name": "Matěj",
"email": "[email protected]"
}
],
"require": {
"php": "^8.3",
"ext-dom": "*",
"ext-fileinfo": "*",
"ext-gd": "*",
"ext-mbstring": "*",
"ext-redis": "*",
"ext-soap": "*",
"composer": "^2",
"aws/aws-sdk-php": "^3.158",
"dflydev/fig-cookies": "^3.0",
"doctrine/annotations": "^1.8",
"endroid/qr-code": "^4.4",
"guzzlehttp/guzzle": "^7.8",
"h4kuna/fio": "^3.0",
"league/csv": "^9.15",
"middlewares/negotiation": "^2.0",
"middlewares/trailing-slash": "^2.0",
"monolog/monolog": "^3.5",
"mpdf/mpdf": "^8.2",
"php-di/slim-bridge": "^3",
"ramsey/uuid": "^4.7",
"robmorgan/phinx": "^0.15.5",
"selective/basepath": "^2.1",
"sentry/sentry": "^4.1",
"skautis/skautis": "^2.1",
"slim/psr7": "^1.1",
"slim/slim": "^4",
"slim/twig-view": "^3.1",
"symfony/console": "^7.1",
"symfony/mailer": "^7.0",
"symfony/translation": "^7.0",
"symfony/twig-bridge": "^7.0",
"symfony/yaml": "^7.0",
"tharos/leanmapper": "^4.0",
"vlucas/phpdotenv": "^5.0",
"zeuxisoo/slim-whoops": "^0.7"
},
"require-dev": {
"ext-pdo": "*",
"friendsofphp/php-cs-fixer": "^3.8",
"mockery/mockery": "^1.6",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "^11",
"roave/security-advisories": "dev-latest",
"shipmonk/composer-dependency-analyser": "^1.3",
"shipmonk/phpstan-rules": "^3.1",
"symfony/var-dumper": "^7.0"
},
"autoload": {
"psr-4": {
"kissj\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"process-timeout": 0,
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": false,
"phpstan/extension-installer": true
}
},
"scripts": {
"unit": "vendor/bin/phpunit tests/",
"stan": "vendor/bin/phpstan analyse --configuration phpstan.neon --memory-limit=1G",
"cs": "vendor/bin/php-cs-fixer fix src --rules=@PSR12,-indentation_type",
"test": [
"@stan",
"@cs",
"@unit"
],
"phinx:create": "vendor/bin/phinx create --configuration src/Settings/phinxConfiguration.php",
"phinx:migrate": "vendor/bin/phinx migrate --configuration src/Settings/phinxConfiguration.php",
"phinx:rollback": "vendor/bin/phinx rollback --configuration src/Settings/phinxConfiguration.php",
"phinx:status": "vendor/bin/phinx status --configuration src/Settings/phinxConfiguration.php"
}
}