forked from SkautDevs/kissj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·89 lines (89 loc) · 2.59 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
{
"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.0",
"ext-dom": "*",
"ext-fileinfo": "*",
"ext-mbstring": "*",
"ext-sqlite3": "*",
"aws/aws-sdk-php": "^3.158",
"dflydev/fig-cookies": "^3.0",
"doctrine/annotations": "^1.8",
"guzzlehttp/guzzle": "^6.0",
"h4kuna/fio": "^2.0",
"league/csv": "^9.1",
"middlewares/negotiation": "^2.0",
"middlewares/trailing-slash": "^2.0",
"monolog/monolog": "^1.25",
"php-di/slim-bridge": "^3",
"phpmailer/phpmailer": "^6.0",
"robmorgan/phinx": "^0.12.5",
"selective/basepath": "^2.1",
"sentry/sdk": "^3.1",
"slim/psr7": "^1.1",
"slim/slim": "^4",
"slim/twig-view": "^3.1",
"symfony/translation": "^5.0",
"symfony/twig-bridge": "^5.1",
"symfony/yaml": "^5.1",
"tharos/leanmapper": "^4.0",
"vlucas/phpdotenv": "^5.0",
"zeuxisoo/slim-whoops": "^0.7"
},
"require-dev": {
"ext-pdo": "*",
"mockery/mockery": "dev-master",
"phpstan/phpstan": "^0.12.9",
"phpunit/phpunit": "^9",
"rector/rector": "^0.11.53",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"kissj\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"process-timeout": 0,
"sort-packages": true
},
"scripts": {
"unit": "vendor/bin/phpunit tests/",
"stan": "vendor/bin/phpstan analyse --configuration phpstan.neon",
"lint": "",
"test": [
"@unit",
"@stan",
"@lint"
],
"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"
}
}