-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
26 lines (26 loc) · 888 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
{
"name": "cheprasov/php-parallel",
"version": "1.2.0",
"description": "The class allows you to run multiple operations parallel in different processes and send results to the main process. Useful if you need to run multiple independent operations simultaneously, instead of sequential execution, or if you run several independent queries, for example, queries to different data bases",
"homepage": "http://github.com/cheprasov/php-parallel",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Alexander Cheprasov",
"email": "[email protected]"
}
],
"autoload": {
"psr-0": {
"Parallel\\": "src"
}
},
"require": {
"php": ">=5.5",
"cheprasov/php-redis-client": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "4.8.*"
}
}