mirror of
https://github.com/archtechx/jobpipeline.git
synced 2025-12-12 16:34:04 +00:00
Initial commit
This commit is contained in:
commit
90c59626c2
8 changed files with 5460 additions and 0 deletions
29
composer.json
Normal file
29
composer.json
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"name": "stancl/jobpipeline",
|
||||
"description": "Turn any series of jobs into Laravel listeners.",
|
||||
"license": "MIT",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Samuel Štancl",
|
||||
"email": "samuel.stancl@gmail.com"
|
||||
}
|
||||
],
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Stancl\\JobPipeline\\": "src/"
|
||||
}
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-4": {
|
||||
"Stancl\\JobPipeline\\Tests\\": "tests/"
|
||||
}
|
||||
},
|
||||
"require": {
|
||||
"illuminate/support": "^7.11"
|
||||
},
|
||||
"require-dev": {
|
||||
"orchestra/testbench": "^5.2",
|
||||
"spatie/valuestore": "^1.2",
|
||||
"ext-redis": "*"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue