-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 992 Bytes
/
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
{
"name": "userg/custom-app",
"authors": [
{
"name": "Nino Casupanan",
"email": "nino.invech3e@gmail.com"
}
],
"autoload": {
"psr-4": {
"App\\Kernel\\": "src/kernel",
"App\\Kernel\\Interfaces\\": "src/kernel/Interfaces",
"App\\Kernel\\Libraries\\": "src/kernel/Libraries",
"App\\Controllers\\": "src/controller",
"App\\Helpers\\": "src/helpers"
},
"files": [
"src/kernel/Components/functions.php",
"src/routes.php"
]
},
"require": {
"php": ">=7.1",
"illuminate/database": "^6.1",
"illuminate/support": "^6.1",
"illuminate/events": "^6.1",
"symfony/dotenv": "3.*",
"psr/container": "^1.0",
"psr/simple-cache": "^1.0",
"twig/twig": "^2.0"
},
"require-dev": {
"symfony/var-dumper": "^4.3",
"maximebf/debugbar": "^1.16"
}
}