Abel Hoogeveen
d35f15114b
Initial release. Removed Tracy dependency Implemented dependencyConstraint. Partially fixes #3. Built foundation. System is now fully in a working order, though many parts must still be developed. System still requires the following components: - Dependency Constraint. Only run when all dependencies have ran. - TaskScheduler. Standardized task that plans task periodically and maintains consistency. - Better TaskStorage. - Proper documentation Brought everything back into working condition. Also updated all copyright notices. Moved files into right place. Co-authored-by: Abel Hoogeveen <abel@techfuze.net> Reviewed-on: #1
26 lines
540 B
JSON
26 lines
540 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": "*"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"FuzeWorks\\Async\\": "src/FuzeWorks/Async"
|
|
}
|
|
},
|
|
"bin": ["bin/supervisor"]
|
|
} |