-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.15 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
43
44
45
46
{
"require": {
"php": ">=7.1",
"fzaninotto/faker": "^1.6",
"ramsey/uuid": "^3.5",
"saxulum/saxulum-doctrine-orm-manager-registry-provider": "^3.1",
"saxulum/saxulum-webprofiler-provider": "^2.0",
"silex/silex": "~2.0",
"silex/web-profiler": "^2.0",
"simple-bus/message-bus": "^2.2",
"symfony/debug-bundle": "^3.1",
"symfony/doctrine-bridge": "^3.1",
"symfony/http-foundation": "4.2.12",
"symfony/monolog-bridge": "^3.1",
"symfony/twig-bridge": "^3.1",
"symfony/var-dumper": "^3.1",
"symfony/yaml": "^3.1",
"twig/twig": "^1.27"
},
"require-dev": {
"phpunit/phpunit": "^7.2"
},
"autoload": {
"psr-4": {
"": "src/"
}
},
"autoload-dev": {
"psr-4": {
"": "test/"
}
},
"scripts": {
"serve": [
"php -S localhost:8000 -t web"
],
"test": [
"./vendor/bin/phpunit --testdox"
]
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"process-timeout": 0
}
}