Skip to content

Commit 8cf2074

Browse files
Laravel 10.x Compatibility (#139)
Co-authored-by: atymic <[email protected]>
1 parent d2be654 commit 8cf2074

File tree

2 files changed

+15
-21
lines changed

2 files changed

+15
-21
lines changed

.github/workflows/php.yml

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,8 @@ jobs:
99
max-parallel: 15
1010
fail-fast: false
1111
matrix:
12-
laravel-version: ['5.8.*', '^6.0', '^7.0', '^8.0', '^9.0']
13-
php-version: ['7.3', '7.4', '8.0', '8.1']
14-
exclude:
15-
- laravel-version: '5.8.*'
16-
php-version: '8.0'
17-
- laravel-version: '5.8.*'
18-
php-version: '8.1'
19-
- laravel-version: '^6.0'
20-
php-version: '8.1'
21-
- laravel-version: '^7.0'
22-
php-version: '8.1'
23-
- laravel-version: '^9.0'
24-
php-version: '7.3'
25-
- laravel-version: '^9.0'
26-
php-version: '7.4'
12+
laravel-version: ['^8.0', '^9.0', 10.*]
13+
php-version: ['8.0', '8.1', '8.2']
2714
name: PHP ${{ matrix.php-version }} on Laravel ${{ matrix.laravel-version }}
2815
steps:
2916
- name: Checkout

composer.json

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
{
22
"name": "laravel-notification-channels/twilio",
33
"description": "Provides Twilio notification channel for Laravel",
4-
"keywords": ["laravel", "twilio", "notification", "sms", "call", "mms"],
4+
"keywords": [
5+
"laravel",
6+
"twilio",
7+
"notification",
8+
"sms",
9+
"call",
10+
"mms"
11+
],
512
"license": "MIT",
613
"support": {
714
"issues": "https://github.com/laravel-notification-channels/twilio/issues",
@@ -24,15 +31,15 @@
2431
"require": {
2532
"php": ">=7.2|^8.0",
2633
"twilio/sdk": "~6.0",
27-
"illuminate/notifications": "^5.8 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
28-
"illuminate/support": "^5.8 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
29-
"illuminate/events": "^5.8 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
30-
"illuminate/queue": "^5.8 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
34+
"illuminate/notifications": "^7.0 || ^8.0 || ^9.0 || ^10.0",
35+
"illuminate/support": "^7.0 || ^8.0 || ^9.0 || ^10.0",
36+
"illuminate/events": "^7.0 || ^8.0 || ^9.0 || ^10.0",
37+
"illuminate/queue": "^7.0 || ^8.0 || ^9.0 || ^10.0"
3138
},
3239
"require-dev": {
3340
"mockery/mockery": "^1.3",
3441
"phpunit/phpunit": "^8.5|^9.5",
35-
"orchestra/testbench": "^3|^4|^5|^6|^7"
42+
"orchestra/testbench": "^5.0 || ^6.0 || ^7.0 || ^8.0"
3643
},
3744
"autoload": {
3845
"psr-4": {

0 commit comments

Comments
 (0)