-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 987 Bytes
/
composer.json
File metadata and controls
49 lines (49 loc) · 987 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "maestroprog/saw",
"description": "Async multi-threading php framework",
"type": "library",
"keywords": [
"framework",
"async",
"thread"
],
"license": "MIT",
"authors": [
{
"name": "Ruslan Yarullin",
"email": "maestroprog@gmail.com",
"homepage": "http://yr0.ru/",
"role": "developer"
}
],
"support": {
"email": "maestroprog@gmail.com"
},
"require": {
"qwerty-php/app-interface": "1.0",
"maestroprog/esockets": "^2.1",
"maestroprog/di-container": "^1.0"
},
"require-dev": {
"phpunit/phpunit": ">=7.0",
"satooshi/php-coveralls": "^1.0"
},
"repositories": [
{
"type": "vcs",
"url": "git@github.com:qwerty-php/app-interface.git"
}
],
"minimum-stability": "beta",
"autoload": {
"psr-4": {
"Maestroprog\\Saw\\": "src/",
"Maestroprog\\Saw\\Sample\\": "sample/"
}
},
"bin": [
"bin/controller",
"bin/worker",
"bin/debug"
]
}