Skip to content

Commit

Permalink
Laravel 10.x Compatibility (#78)
Browse files Browse the repository at this point in the history
* Bump dependencies for Laravel 10

* Update GitHub Actions for Laravel 10
  • Loading branch information
laravel-shift committed Jan 19, 2023
1 parent fe2bb25 commit 20bb492
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 31 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/run-tests.yml
Expand Up @@ -10,16 +10,20 @@ jobs:
matrix:
os: [ubuntu-latest]
php: [8.2, 8.1, 8.0]
laravel: [7.*, 8.*, 9.*]
laravel: [7.*, 8.*, 9.*, 10.*]
dependency-version: [prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
testbench: 7.*
- laravel: 8.*
testbench: 6.*
- laravel: 7.*
testbench: 5.*
exclude:
- laravel: 10.*
php: 8.0
- laravel: 7.*
php: 8.2
- laravel: 7.*
Expand Down
60 changes: 30 additions & 30 deletions composer.json
@@ -1,7 +1,7 @@
{
"name" : "spatie/laravel-failed-job-monitor",
"description" : "Get notified when a queued job fails",
"keywords" : [
"name": "spatie/laravel-failed-job-monitor",
"description": "Get notified when a queued job fails",
"keywords": [
"spatie",
"queue",
"job",
Expand All @@ -10,46 +10,46 @@
"slack",
"laravel-failed-job-monitor"
],
"homepage" : "https://github.com/spatie/laravel-failed-job-monitor",
"license" : "MIT",
"authors" : [
"homepage": "https://github.com/spatie/laravel-failed-job-monitor",
"license": "MIT",
"authors": [
{
"name" : "Freek Van der Herten",
"email" : "freek@spatie.be",
"homepage" : "https://spatie.be",
"role" : "Developer"
"name": "Freek Van der Herten",
"email": "freek@spatie.be",
"homepage": "https://spatie.be",
"role": "Developer"
}
],
"require" : {
"php" : "^8.0",
"laravel/framework" : "^7.0|^8.0|^9.0",
"require": {
"php": "^8.0",
"laravel/framework": "^7.0|^8.0|^9.0|^10.0",
"spatie/laravel-package-tools": "^1.6"
},
"require-dev" : {
"phpunit/phpunit" : "^8.5|^9.5",
"require-dev": {
"phpunit/phpunit": "^8.5|^9.5",
"mockery/mockery": "^1.4",
"orchestra/testbench" : "^5.0|^6.0|^7.0"
"orchestra/testbench": "^5.0|^6.0|^7.0|^8.0"
},
"autoload" : {
"psr-4" : {
"Spatie\\FailedJobMonitor\\" : "src"
"autoload": {
"psr-4": {
"Spatie\\FailedJobMonitor\\": "src"
}
},
"autoload-dev" : {
"psr-4" : {
"Spatie\\FailedJobMonitor\\Test\\" : "tests"
"autoload-dev": {
"psr-4": {
"Spatie\\FailedJobMonitor\\Test\\": "tests"
}
},
"scripts" : {
"test" : "vendor/bin/phpunit"
"scripts": {
"test": "vendor/bin/phpunit"
},
"suggest" : {
"guzzlehttp/guzzle" : "Allows notifications to be sent to Slack",
"laravel/slack-notification-channel" : "Required for sending notifications via Slack"
"suggest": {
"guzzlehttp/guzzle": "Allows notifications to be sent to Slack",
"laravel/slack-notification-channel": "Required for sending notifications via Slack"
},
"extra" : {
"laravel" : {
"providers" : [
"extra": {
"laravel": {
"providers": [
"Spatie\\FailedJobMonitor\\FailedJobMonitorServiceProvider"
]
}
Expand Down

0 comments on commit 20bb492

Please sign in to comment.