Initial worker definition. Needs a jobs table to be created

This commit is contained in:
2022-05-16 15:22:37 +01:00
parent ae36ccb23b
commit fb24b2ee72
9 changed files with 412 additions and 0 deletions

13
composer.json Normal file
View File

@@ -0,0 +1,13 @@
{
"name": "avsdev/sprinkle-worker",
"type": "userfrosting-worker",
"description": "A sprinkle to add a worker thread.",
"autoload": {
"files" : [
"defines.php"
],
"psr-4": {
"UserFrosting\\Sprinkle\\Worker\\": "src/"
}
}
}