-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.09 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
{
"name": "tuxboy/core",
"description": "Le core pour le framework TuxBoy-Framework",
"Licence": "MIT",
"authors": [
{
"name": "Benoît Mallo",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"TuxBoy\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "tests/"
}
},
"require": {
"guzzlehttp/guzzle": "^6.3",
"http-interop/response-sender": "^1.0",
"nikic/fast-route": "^1.2",
"php-di/php-di": "^5.4",
"twig/twig": "^2.4",
"vlucas/phpdotenv": "^2.4",
"doctrine/dbal": "^2.6",
"filp/whoops": "^2.1",
"goaop/framework": "^2.0",
"mnapoli/dbal-schema": "^0.2.1",
"cocur/slugify": "^3.0",
"zendframework/zend-expressive-fastroute": "^2.1",
"cakephp/orm": "^3.5"
},
"require-dev": {
"phpunit/phpunit": "^6.2",
"friendsofphp/php-cs-fixer": "v2.3.2",
"symfony/var-dumper": "^3.3",
"squizlabs/php_codesniffer": "^3.0"
}
}