-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (32 loc) · 843 Bytes
/
composer.json
File metadata and controls
33 lines (32 loc) · 843 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
{
"name": "drift/skeleton",
"description": "Skeleton repository ofr DriftPHP",
"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/yaml": "^5.0.0",
"drift/http-kernel": "^0.1",
"drift/server": "^0.1",
"drift/react-functions": "^0.1",
"drift/event-loop-utils": "^0.1"
},
"autoload": {
"psr-4": {
"App\\": "src/",
"Domain\\": "src/Domain",
"Infrastructure\\": "src",
"Drift\\": "Drift/"
}
}
}