-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
47 lines (40 loc) · 1.18 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
{
"description": "Small demo using DriftPHP skeleton and components",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Marc Morera",
"email": "yuhu@mmoreram.com"
}
],
"require": {
"php": "^7.4 || ^8.0",
"symfony/console": "^5.0.0",
"symfony/framework-bundle": "^5.0.0",
"symfony/dotenv": "^5.0.0",
"symfony/stopwatch": "^5.0.0",
"symfony/debug": "^4.4.0",
"drift/http-kernel": "^0.1.7",
"drift/server": "^0.1.7",
"drift/react-functions": "0.1.*",
"drift/event-loop-utils": "0.1.*",
"drift/preload-bundle": "^0.1.0",
"drift/command-bus-bundle": "^0.1.8",
"drift/event-bus-bundle": "^0.1.5",
"drift/websocket-bundle": "^0.1.2",
"drift/twig-bundle": "^0.1.0",
"drift/dbal-bundle": "^0.1.2",
"drift/amqp-bundle": "^0.1.0",
"react/mysql": "^0.5.4",
"symfony/thanks": "^1.2.5"
},
"autoload": {
"psr-4": {
"App\\": "src/",
"Domain\\": "src/Domain",
"Infrastructure\\": "src",
"Drift\\": "Drift/"
}
}
}