-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
79 lines (78 loc) · 1.92 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
{
"name": "moebius/mental-space-backend",
"type": "project",
"description": "Mental Space Backend",
"license": "CC-BY-NC-SA-4.0",
"require": {
"php": "^7.4 || ^8.0",
"ext-curl": "*",
"ext-fileinfo": "*",
"ext-gettext": "*",
"ext-json": "*",
"ext-openssl": "*",
"ext-pdo": "*",
"ext-posix": "*",
"ext-zip": "*",
"cakephp/chronos": "2.4.4",
"cakephp/database": "4.5.3",
"cakephp/validation": "4.5.3",
"fig/http-message-util": "1.1.5",
"guzzlehttp/guzzle": "7.8.1",
"lcobucci/jwt": "^5.2",
"lulco/phoenix": ">=2.5",
"mpdf/mpdf": "^8.2.2",
"nyholm/psr7": "^1.8.1",
"nyholm/psr7-server": "^1.1",
"odan/session": "5.1.0",
"peppeocchi/php-cron-scheduler": "^4.0",
"php-di/php-di": "^7.0.6",
"phpmailer/phpmailer": "^6.9.1",
"selective/array-reader": "^2.1",
"selective/basepath": "^2.2",
"selective/validation": "^2.1",
"slim/php-view": "^3.2",
"slim/psr7": "^1.6.1",
"slim/slim": "^4.12",
"slim/twig-view": "^3.3",
"stripe/stripe-php": "^13.12",
"symfony/console": "^6.4.3",
"symfony/mailer": "^6.4.3",
"symfony/polyfill-uuid": "^1.29",
"symfony/uid": "^6.4.3",
"symfony/yaml": "^6.4.3",
"tuupola/cors-middleware": "^1.4.3",
"tuupola/slim-jwt-auth": "^3.8",
"twig/twig": "^3.8",
"vlucas/phpdotenv": "~5.6"
},
"require-dev": {
"dg/bypass-finals": "^1.6",
"phpstan/phpstan": "^1.10.59",
"phpunit/phpunit": "^11.0.3",
"selective/test-traits": "^4.1",
"squizlabs/php_codesniffer": "^3.9"
},
"autoload": {
"psr-4": {
"App\\": "src/"
},
"files": [
"src/Support/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests/"
}
},
"config": {
"process-timeout": 0,
"sort-packages": true
},
"scripts": {
"test": "phpunit",
"analyze": "phpstan analyze",
"cs-check": "phpcs",
"cs-fix": "phpcbf"
}
}