-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
35 lines (35 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
{
"name": "sqonk/phext-detach",
"description": "Detach is a library for running tasks inside of a PHP script in parallel using forked processes.",
"type": "library",
"require": {
"php": "^8",
"ext-pcntl": "*",
"ext-posix": "*",
"ext-apcu": "*",
"sqonk/phext-core": "^1.1"
},
"keywords": ["pcntl","parallel","multitasking","multi-tasking","concurrency", "concurrent"],
"license": "MIT",
"authors": [
{
"name": "Theo Howell",
"email": "sqonk@sqonk.com.au"
}
],
"autoload": {
"files": [
"src/Task.class.php",
"src/TaskMap.class.php",
"src/Dispatcher.class.php",
"src/WaitGroup.class.php",
"src/Channel.class.php",
"src/BufferedChannel.class.php",
"src/global_functions.php"
]
},
"require-dev": {
"phpunit/phpunit": "^9",
"phpstan/phpstan": "^1.9"
}
}