1
0
Fork 0
mirror of https://github.com/archtechx/jobpipeline.git synced 2025-12-12 20:54:04 +00:00
jobpipeline/composer.json
Guilherme Saade bfc53f6dd6
L10 compatibility (#12)
* Bump dependencies for Laravel 10

* Update GitHub Actions for Laravel 10

* drop < L9 support

* use `dispatch_sync` instead of `dispatch_now`

* migrate phpunit configuration

* update matrix format

---------

Co-authored-by: Samuel Štancl <samuel@archte.ch>
2023-02-16 11:43:17 +01:00

32 lines
750 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": "^9.0|^10.0"
},
"require-dev": {
"orchestra/testbench": "^7.0|^8.0",
"spatie/valuestore": "^1.2",
"ext-redis": "*"
},
"minimum-stability": "dev",
"prefer-stable": true
}