Skip to content

Commit

Permalink
Merge pull request #32 from renoki-co/shift-build-2349
Browse files Browse the repository at this point in the history
Laravel 9.x
  • Loading branch information
rennokki authored Feb 9, 2022
2 parents dd28b85 + 222d866 commit bc80a83
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,22 @@ jobs:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
php:
- '7.3'
- '7.4'
- '8.0'
- '8.1'
laravel:
- 7.*
- 8.*
- 9.*
prefer:
- 'prefer-lowest'
- 'prefer-stable'
include:
- laravel: '7.*'
testbench: '5.*'
- laravel: '8.*'
testbench: '6.*'
- laravel: '9.*'
testbench: '7.*'

name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} --${{ matrix.prefer }}

Expand Down
21 changes: 16 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
{
"name": "renoki-co/laravel-aws-webhooks",
"description": "Easy webhook handler for Laravel to catch AWS SNS notifications for various services.",
"keywords": ["laravel", "php", "sns", "aws", "webhooks", "ses", "webhook"],
"keywords": [
"laravel",
"php",
"sns",
"aws",
"webhooks",
"ses",
"webhook"
],
"license": "Apache-2.0",
"homepage": "https://github.com/renoki-co/laravel-aws-webhooks",
"authors": [
Expand All @@ -12,9 +20,9 @@
}
],
"require": {
"illuminate/http": "^7.30|^8.23",
"illuminate/support": "^7.30|^8.23",
"rennokki/laravel-sns-events": "^7.0"
"illuminate/http": "^8.83|^9.0.1",
"illuminate/support": "^8.83|^9.0.1",
"rennokki/laravel-sns-events": "^7.1"
},
"autoload": {
"psr-4": {
Expand All @@ -31,7 +39,10 @@
},
"require-dev": {
"mockery/mockery": "^1.5",
"orchestra/testbench": "^6.24.0"
"orchestra/testbench": "^6.28|^7.0",
"orchestra/testbench": "^6.28|^7.0",
"orchestra/testbench-core": "^6.28|^7.0",
"phpunit/phpunit": "^9.5.13"
},
"config": {
"sort-packages": true
Expand Down

0 comments on commit bc80a83

Please sign in to comment.