-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.93 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.93 KB
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
{
"name": "getwebspace/platform",
"description": "Content Management System",
"authors": [
{
"name": "Aleksey Ilyin",
"email": "alksily@outlook.com",
"homepage": "https://alksily.github.io/alksily/",
"role": "Developer"
}
],
"require": {
"php": ">=8.3",
"ext-gd": "*",
"ext-pdo": "*",
"ext-json": "*",
"ext-curl": "*",
"ext-openssl": "*",
"ext-posix": "*",
"slim/slim": "^4.14.0",
"slim/psr7": "^1.7.0",
"slim/twig-view": "^3.4.0",
"slim/http-cache": "^1.2.0",
"php-di/php-di": "^7.0.7",
"illuminate/events": "^v11.25.0",
"illuminate/database": "^v11.25.0",
"illuminate/collections": "^v11.25.0",
"illuminate/filesystem": "^v11.25.0",
"illuminate/cache": "^v11.25.0",
"firebase/php-jwt": "^v6.10.1",
"alksily/support": "^2.0.0",
"twig/twig": "v3.11.2",
"twig/intl-extra": "v3.8.0",
"twig/string-extra": "v3.8.0",
"ramsey/uuid": "^4.7.6",
"phpmailer/phpmailer": "^v6.9.1",
"sendpulse/rest-api": "^2.0.1",
"phpoffice/phpspreadsheet": "^3.8.0",
"bacon/bacon-qr-code": "^v3.0.0",
"monolog/monolog": "^3.7.0",
"symfony/var-dumper": "^v7.1.5",
"voku/html-compress-twig": "^4.0.2",
"robmorgan/phinx": "^0.16.4",
"teamtnt/tntsearch": "^v4.3.0"
},
"require-dev": {
"fakerphp/faker": "^2.0.x-dev",
"friendsofphp/php-cs-fixer": "^v3.64.0",
"phpunit/phpunit": "^11.3.6",
"guzzlehttp/guzzle": "^7.9.2"
},
"autoload": {
"psr-4": {
"Plugin\\": "plugin/",
"App\\": "src/"
},
"files": [
"config/vars.php",
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests/"
}
}
}