-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
24 lines (24 loc) · 843 Bytes
/
composer.json
File metadata and controls
24 lines (24 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "andrey-tech/parallel-executor-php",
"description": "Простой класс на PHP 7.2+, позволяющий выполнять задачи в нескольких параллельных потоках исполнения при помощи PHP-расширения parallel",
"keywords": [ "parallel", "threads", "php-threads", "php-parallel" ],
"homepage": "https://github.com/andrey-tech/parallel-executor-php",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "andrey-tech",
"homepage": "https://github.com/andrey-tech/",
"role": "Developer"
}
],
"require": {
"php": ">=7.2",
"ext-parallel": "*"
},
"autoload": {
"psr-4": {
"App\\": "src/App"
}
}
}