-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
73 lines (73 loc) · 2.14 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "webbaard/beer-warehouse",
"type": "project",
"authors": [
{
"name": "Tim Huijzers",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.2",
"ext-json": "*",
"doctrine/doctrine-bundle": "~1.12",
"doctrine/doctrine-cache-bundle": "~1.4",
"doctrine/doctrine-migrations-bundle": "~1.3",
"doctrine/migrations": "~1.8",
"limenius/react-bundle": "~3.0",
"prooph/event-sourcing": "~5.6",
"prooph/event-store-bus-bridge": "~3.3",
"prooph/event-store-http-middleware": "~0.2.0",
"prooph/event-store-symfony-bundle": "~0.4",
"prooph/pdo-event-store": "~1.11",
"prooph/service-bus-symfony-bundle": "~0.6",
"sensio/framework-extra-bundle": "~5.5",
"symfony/asset": "~4.4",
"symfony/console": "~4.4",
"symfony/flex": "~1.6",
"symfony/framework-bundle": "~4.4",
"symfony/requirements-checker": "~1.1",
"symfony/templating": "~4.4",
"symfony/twig-bundle": "~4.4",
"symfony/webpack-encore-bundle": "~1.7",
"symfony/yaml": "~4.4",
"laminas/laminas-diactoros": "~1.8"
},
"require-dev": {
"phpstan/phpstan": "^0.11.5",
"phpunit/phpunit": "^6.5",
"symfony/debug": "^4.4",
"symfony/debug-pack": "^1.0",
"symfony/dotenv": "^4.4",
"symfony/web-profiler-bundle": "^4.4",
"symfony/web-server-bundle": "^4.4"
},
"config": {
"bin-dir": "bin",
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"secure-http": true,
"cache-files-maxsize": "600M"
},
"autoload": {
"psr-4": {
"Webbaard\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Webbaard\\BeerWarehouse\\": "tests/"
}
},
"scripts": {
"auto-scripts": {
"requirements-checker": "script",
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
}
}