-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
48 lines (47 loc) · 1.11 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
{
"name": "jubianchi/async-generator",
"description": "An async generator runtime for PHP",
"license": "MIT",
"type": "library",
"keywords": [
"async",
"generator",
"runtime"
],
"authors": [
{
"name": "jubianchi",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0.3"
},
"require-dev": {
"atoum/atoum": "@stable",
"atoum/reports-extension": "@stable",
"fabpot/php-cs-fixer": "@stable",
"couscous/couscous": "@stable"
},
"autoload": {
"files": [
"src/loop/functions.php",
"src/pipe/functions.php",
"src/runtime/functions.php",
"src/time/functions.php",
"src/stream.php",
"src/socket.php",
"src/process.php"
]
},
"autoload-dev": {
"psr-4": {
"jubianchi\\async\\runtime\\tests\\": "tests/"
}
},
"scripts": {
"cs": "php-cs-fixer fix --ansi",
"test": "atoum -ft",
"couscous": "couscous preview"
}
}