forked from aternosorg/taskmaster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 892 Bytes
/
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
{
"name": "aternos/taskmaster",
"description": "Object-oriented PHP library for running tasks in parallel",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Matthias Neid",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Aternos\\Taskmaster\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Aternos\\Taskmaster\\Test\\": "test/"
}
},
"require": {
"php": ">=8.1"
},
"require-dev": {
"phpunit/phpunit": "^10.4",
"phpbench/phpbench": "^1.2"
},
"suggest": {
"ext-pcntl": "Required for fork workers",
"ext-parallel": "Required for thread workers"
},
"scripts": {
"test": "phpunit --config phpunit.xml",
"bench": "phpbench run --report=aggregate"
}
}