Skip to content

Commit

Permalink
Laravel 10.x Compatibility (#139)
Browse files Browse the repository at this point in the history
Co-authored-by: atymic <[email protected]>
  • Loading branch information
laravel-shift and atymic authored Feb 21, 2023
1 parent d2be654 commit 8cf2074
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 21 deletions.
17 changes: 2 additions & 15 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,8 @@ jobs:
max-parallel: 15
fail-fast: false
matrix:
laravel-version: ['5.8.*', '^6.0', '^7.0', '^8.0', '^9.0']
php-version: ['7.3', '7.4', '8.0', '8.1']
exclude:
- laravel-version: '5.8.*'
php-version: '8.0'
- laravel-version: '5.8.*'
php-version: '8.1'
- laravel-version: '^6.0'
php-version: '8.1'
- laravel-version: '^7.0'
php-version: '8.1'
- laravel-version: '^9.0'
php-version: '7.3'
- laravel-version: '^9.0'
php-version: '7.4'
laravel-version: ['^8.0', '^9.0', 10.*]
php-version: ['8.0', '8.1', '8.2']
name: PHP ${{ matrix.php-version }} on Laravel ${{ matrix.laravel-version }}
steps:
- name: Checkout
Expand Down
19 changes: 13 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
{
"name": "laravel-notification-channels/twilio",
"description": "Provides Twilio notification channel for Laravel",
"keywords": ["laravel", "twilio", "notification", "sms", "call", "mms"],
"keywords": [
"laravel",
"twilio",
"notification",
"sms",
"call",
"mms"
],
"license": "MIT",
"support": {
"issues": "https://github.com/laravel-notification-channels/twilio/issues",
Expand All @@ -24,15 +31,15 @@
"require": {
"php": ">=7.2|^8.0",
"twilio/sdk": "~6.0",
"illuminate/notifications": "^5.8 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
"illuminate/support": "^5.8 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
"illuminate/events": "^5.8 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
"illuminate/queue": "^5.8 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
"illuminate/notifications": "^7.0 || ^8.0 || ^9.0 || ^10.0",
"illuminate/support": "^7.0 || ^8.0 || ^9.0 || ^10.0",
"illuminate/events": "^7.0 || ^8.0 || ^9.0 || ^10.0",
"illuminate/queue": "^7.0 || ^8.0 || ^9.0 || ^10.0"
},
"require-dev": {
"mockery/mockery": "^1.3",
"phpunit/phpunit": "^8.5|^9.5",
"orchestra/testbench": "^3|^4|^5|^6|^7"
"orchestra/testbench": "^5.0 || ^6.0 || ^7.0 || ^8.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 8cf2074

Please sign in to comment.