-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
50 lines (50 loc) · 1.01 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
48
49
50
{
"name": "phvia/firman",
"description": "PHP multi-process and non-blocking I/O library.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "farwish",
"email": "farwish@foxmail.com"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=7.0",
"symfony/console": "~4.0.6"
},
"require-dev": {
"phpunit/phpunit": "~6.5.7"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Firman\\": "./"
}
},
"autoload-dev": {
"psr-4": {
"Firman\\Tests\\": "tests/"
}
},
"scripts": {
"post-install-cmd": [
],
"post-update-cmd": [
]
},
"suggest": {
"php": "Suggest to install newest PHP for high performance."
},
"extra": {
"branch-alias": {
"dev-master": "0.0.x-dev"
}
}
}