-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·57 lines (57 loc) · 1.58 KB
/
composer.json
File metadata and controls
executable file
·57 lines (57 loc) · 1.58 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
{
"name": "syspanel/sysframework",
"description": "PHP Framework - Version 1.0",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Marco Costa",
"email": "sysframework@syspanel.com.br"
}
],
"config": {
"optimize-autoloader": true,
"prepend-autoloader": false,
"platform": {
"php": "8.3.0"
}
},
"require": {
"php-di/php-di": "^7.0",
"intervention/image": "^3.8",
"gilbitron/easycsrf": "^1.5",
"twbs/bootstrap": "5.3.3",
"twitter/bootstrap": "*",
"sceditor/sceditor": "^2.1",
"symfony/mailer": "^7.1",
"guzzlehttp/psr7": "^2.7",
"middlewares/utils": "^4.0"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"App\\Components\\": "app/Components/",
"App\\Controllers\\": "app/Controllers/",
"App\\Models\\": "app/Models/",
"App\\Services\\": "app/Services/",
"App\\Middlewares\\": "app/Middlewares/",
"Core\\": "core/",
"Core\\Library": "core/library",
"Database\\Migrations\\": "database/migrations",
"Database\\Seeders\\": "database/seeders"
}
},
"autoload-dev": {
"psr-4": {
"App\\Console\\Commands\\": "app/Console/Commands/"
}
},
"scripts": {
"post-install-cmd": [
"Composer\\ScriptHandler::clearCache"
],
"post-update-cmd": [
"Composer\\ScriptHandler::clearCache"
]
}
}