-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 939 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": "stekos/stekos-php",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "StephaneKuma",
"email": "kumastephane@gmail.com"
}
],
"autoload": {
"files": ["app/helpers.php"],
"psr-4": {
"Core\\": "core/",
"App\\": "app/",
"Test\\": "tests/"
}
},
"require": {
"symfony/var-dumper": "^4.3",
"filp/whoops": "^2.5",
"robmorgan/phinx": "^0.11.1",
"fzaninotto/faker": "^1.8",
"vlucas/valitron": "^1.4",
"twig/twig": "^2.11",
"vlucas/phpdotenv": "^3.6",
"guzzlehttp/psr7": "^1.6",
"http-interop/response-sender": "^1.0",
"php-di/php-di": "^6.0",
"zendframework/zend-expressive-fastroute": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^8.3",
"squizlabs/php_codesniffer": "^3.4"
}
}