-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.26 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
{
"name": "digitalcanvas/ftpmanager",
"description": "Web FTP file manager",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Jonathan Bernardi",
"email": "[email protected]"
}
],
"autoload": {
"files": [
"system/functions.php"
],
"classmap": [
"system/framework/Route.php"
],
"psr-4": {
"Framework\\": "system/framework/",
"App\\": "system/app/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"preferred-install": "dist",
"vendor-dir": "system/vendor",
"bin-dir": "bin",
"sort-packages": true,
"optimize-autoloader": true
},
"require": {
"php": ">=7.4",
"illuminate/config": "^8.40",
"illuminate/container": "^8.40",
"illuminate/contracts": "^8.40",
"illuminate/http": "^8.40",
"illuminate/routing": "^8.40",
"illuminate/support": "^8.40",
"illuminate/view": "^8.40",
"league/container": "^2.5",
"ramsey/uuid": "^4.1",
"spekkionu/domain-dispatcher": "^1.0"
},
"require-dev": {
"symfony/var-dumper": "^5.0"
}
}