-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 822 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 822 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
{
"name": "denysbulakh/asyncphp",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Denys Bulakh",
"email": "denys@bulakhweb.com"
}
],
"autoload": {
"psr-4": {
"Bulakh\\Models\\": "src/models",
"Bulakh\\Services\\": "src/services",
"Bulakh\\Infrastructure\\": "src/infrastructure"
}
},
"scripts": {
"booking-create": "Bulakh\\Services\\BookingService::createBookingCmd",
"register-async": "Bulakh\\Infrastructure\\RegisterRequest::asyncSend",
"start-server": "Bulakh\\Infrastructure\\BookingServer::createBookingServerCmd"
},
"require": {
"monolog/monolog": "^2.1",
"react/promise": "^2.8",
"react/child-process": "^0.6.1"
}
}