-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.35 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
{
"name": "neoground/charm",
"description": "Charm Framework",
"homepage": "https://neoground.com/projects/charm",
"license": "MIT",
"version": "v3.6",
"authors": [
{
"name": "Sven Reifschneider",
"homepage": "https://neoground.com"
}
],
"require": {
"php": ">=8.1",
"ext-json": "*",
"ext-fileinfo": "*",
"ext-openssl": "*",
"monolog/monolog": "^3.8",
"nesbot/carbon": "^3.8",
"symfony/console": "^7.2",
"twig/twig": "^3.17",
"phroute/phroute": "^2.2",
"predis/predis": "^2.3",
"symfony/yaml": "^7.2",
"dragonmantank/cron-expression": "^3.4",
"phpmailer/phpmailer": "^6.9",
"league/flysystem": "^3.29",
"league/flysystem-sftp-v3": "^3.29",
"opis/closure": "^3.6",
"claviska/simpleimage": "^4.2",
"illuminate/database": "^11.35",
"guzzlehttp/guzzle": "^7.8",
"respect/validation": "^2.3",
"filp/whoops": "^2.16",
"kint-php/kint": "^6.0",
"maximebf/debugbar": "^1.23",
"phpunit/phpunit": "^11.5",
"laravel/serializable-closure": "^2.0"
},
"suggest": {
"ext-pcntl": "Required when you want to use the built-in cron daemon",
"ext-redis": "For native redis support instead of using predis",
"kint-php/kint-twig": "Provides d() and s() functions in twig templates"
},
"autoload": {
"psr-4": {
"Charm\\": "src/"
}
}
}