-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.46 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.46 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
{
"name": "dekadmin/dic-test",
"description": "",
"type": "project",
"authors": [
{
"name": "Guillian Aufrère",
"email": "guillian77270@gmail.com"
}
],
"require": {
"php": ">=7.4",
"php-di/php-di": "^6.3",
"altorouter/altorouter": "^2.0",
"twig/twig": "^3.0",
"ext-json": "*",
"ext-readline": "*",
"symfony/console": "^5.2",
"firebase/php-jwt": "^5.2",
"shuchkin/simplexlsx": "^0.8.23",
"ext-pdo": "*",
"illuminate/database": "^8.40",
"illuminate/events": "^8.40",
"fzaninotto/faker": "^1.9"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/var-dumper": "^5.2",
"guzzlehttp/guzzle": "^7.3",
"ext-http": "*"
},
"autoload": {
"psr-4": {
"App\\Core\\" : "src",
"App\\Core\\Facade\\" : "src/facades",
"App\\Core\\Database\\": "src/database",
"App\\Controller\\" : "app/controllers",
"App\\Middleware\\" : "app/middlewares",
"App\\Core\\TwigExtension\\" : "src/twig",
"App\\Model\\" : "app/models",
"App\\Api\\" : "app/api",
"App\\Utility\\" : "app/utilities",
"App\\Command\\" : "app/commands",
"App\\Service\\" : "app/services"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\" : "tests"
}
}
}