Abel Hoogeveen
db962e96e1
Add 'addTasks' method to `Tasks` class Implemented basic RedisTaskStorage. - Fixed bug where worker is not provided with bootstrap by ShellExecutor. - Added composer and Redis to Dockerfile - Added more output to ParallelSuperVisor Updated config format. Implemented changes to binaries. Binaries now accept a 'bootstrap' argument, allowing the developer to load a custom bootstrap from the project they're working on. This allows Async to run in the same environment as the project it's part of. Co-authored-by: Abel Hoogeveen <abel@techfuze.net> Reviewed-on: #4
30 lines
641 B
JSON
30 lines
641 B
JSON
{
|
|
"name": "fuzeworks/async",
|
|
"description": "FuzeWorks Async task execution library",
|
|
"license": ["MIT"],
|
|
"authors": [
|
|
{
|
|
"name": "TechFuze",
|
|
"homepage": "https://techfuze.net"
|
|
},
|
|
{
|
|
"name": "FuzeWorks Community",
|
|
"homepage": "https://techfuze.net/fuzeworks/contributors"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7.2.0",
|
|
"fuzeworks/core": "~1.2.0",
|
|
"ext-json": "*",
|
|
"ext-redis": "*"
|
|
},
|
|
"require-dev": {
|
|
"fuzeworks/tracycomponent": "~1.2.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"FuzeWorks\\Async\\": "src/FuzeWorks/Async"
|
|
}
|
|
},
|
|
"bin": ["bin/supervisor", "bin/worker"]
|
|
} |