-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (34 loc) · 953 Bytes
/
composer.json
File metadata and controls
35 lines (34 loc) · 953 Bytes
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
{
"name": "drift/skeleton",
"description": "Skeleton repository ofr DriftPHP",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Marc Morera",
"email": "yuhu@mmoreram.com"
}
],
"require": {
"php": "^7.3",
"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.*, >=0.1.7",
"drift/server": "0.1.*, >=0.1.7",
"drift/react-functions": "0.1.*",
"drift/event-loop-utils": "0.1.*",
"drift/dbal-bundle": "^0.1.2",
"drift/mysql-bundle": "^0.1.1"
},
"autoload": {
"psr-4": {
"App\\": "src/",
"Domain\\": "src/Domain",
"Infrastructure\\": "src/Infrastructure",
"Drift\\": "Drift/"
}
}
}