-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 1015 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 1015 Bytes
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
{
"name": "caracal/framework",
"description": "A lightweight PHP framework for building web apps.",
"type": "project",
"require": {
"php": ">=8.0",
"vlucas/phpdotenv": "^5.6",
"illuminate/database": "^12.53",
"monolog/monolog": "^3.10",
"respect/validation": "^2.4",
"ezyang/htmlpurifier": "^4.19",
"symfony/process": "^7.4",
"symfony/console": "^7.4",
"phpmailer/phpmailer": "^7.0",
"nikic/fast-route": "^1.3",
"predis/predis": "^3.4"
},
"autoload": {
"classmap": ["core/Exceptions.php"],
"psr-4": {
"Caracal\\Core\\": "core/",
"App\\Modules\\": "app/Modules/"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist"
},
"minimum-stability": "stable",
"prefer-stable": true,
"require-dev": {
"phpunit/phpunit": "^11.5",
"symfony/var-dumper": "^7.4",
"ramsey/uuid": "^4.9",
"nesbot/carbon": "^3.11"
}
}