-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (33 loc) · 1010 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
37
{
"autoload": {
"files": [
"./application/config/define-constantes.php",
"./application/config/app-parameters.php",
"./application/config/bdd-parameters.php",
"./application/config/console-parameters.php"
],
"psr-4": {
"MVC\\Classe\\" : "./application/class",
"MVC\\Object\\" : "./application/objets",
"MVC\\Domain\\" : "./domain",
"MVC\\Command\\": "./console/command",
"MVC\\Component\\" : "./console/component"
}
},
"require": {
"windwalker/renderer": "3.*",
"illuminate/view": "4.*",
"neitanod/forceutf8": "^2.0",
"symfony/routing": "3.4.36",
"symfony/http-foundation": "~2.8",
"symfony/yaml": "~4.0",
"symfony/expression-language": "~3.0",
"symfony/config": "3.3.2",
"twig/twig": "1.*"
},
"require-dev": {
"apereo/phpcas": "^1.3",
"hybridauth/hybridauth": "^3.2",
"michelf/php-markdown": "^1.9"
}
}