1
0
Fork 0
mirror of https://github.com/archtechx/jobpipeline.git synced 2026-03-21 22:04:05 +00:00
jobpipeline/composer.json
2026-03-18 17:50:56 +01:00

32 lines
775 B
JSON

{
"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": {
"php": "^8.0",
"illuminate/support": "^10.0|^11.0|^12.0|^13.0"
},
"require-dev": {
"orchestra/testbench": "^8.0|^9.0|^10.0|^11.0",
"spatie/valuestore": "^1.2",
"ext-redis": "*"
},
"minimum-stability": "dev",
"prefer-stable": true
}