-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 1.69 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
{
"name": "brazilliance/infinity",
"description": "Main website for the Beyond Identities Community Center",
"homepage": "https://github.com/beyondidentities/infinity",
"minimum-stability": "stable",
"license": "proprietary",
"authors": [
{
"name": "Miquel Brazil",
"email": "[email protected]",
"role": "Developer"
}
],
"repositories": [
{
"type": "composer",
"url": "https://repo.packagist.org"
},
{
"type": "composer",
"url": "https://repo.packagist.com/brazilliance/"
}
],
"require": {
"php": ">=8.0",
"ext-json": "*",
"ext-pdo": "*",
"cakephp/cache": "^4.3",
"cakephp/chronos": "^2.3",
"cakephp/http": "^4.4",
"cakephp/i18n": "^4.3",
"cakephp/orm": "^4.3",
"middlewares/trailing-slash": "^2.0",
"odan/session": "^5.1",
"php-di/slim-bridge": "^3.2",
"predis/predis": "^1.1",
"robmorgan/phinx": "^0.12.10",
"sentry/sdk": "^3.1",
"sentry/sentry": "^3.7",
"slim/php-view": "^3.1",
"slim/slim": "4.*",
"symfony/cache": "^6.0",
"symfony/console": "^6.0",
"symfony/mime": "^6.0",
"symfony/uid": "^6.0",
"twilio/sdk": "^6.44",
"vlucas/phpdotenv": "^5.4"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests/"
}
},
"prefer-stable": true,
"config": {
"sort-packages": true
},
"require-dev": {
"spatie/ray": "^1.32"
}
}