Skip to content

Commit 7cebcb6

Browse files
committed
Add support for Laravel 8
1 parent 596ccd2 commit 7cebcb6

File tree

3 files changed

+18
-7
lines changed

3 files changed

+18
-7
lines changed

.github/workflows/run-tests.yml

+10-2
Original file line numberDiff line numberDiff line change
@@ -5,28 +5,36 @@ on: [push, pull_request]
55
jobs:
66
test:
77
runs-on: ubuntu-latest
8+
continue-on-error: ${{ matrix.next-laravel }}
89
strategy:
910
fail-fast: true
1011
matrix:
1112
php: [7.2, 7.3, 7.4]
1213
laravel: [^6.18, 7.*]
1314
composer-flags: ['--prefer-stable']
15+
next-laravel: [false]
1416
include:
1517
- php: 7.2
1618
laravel: ^6.18
1719
composer-flags: '--prefer-stable --prefer-lowest'
20+
next-laravel: false
1821
- php: 7.4
1922
laravel: 7.*
2023
composer-flags: '' # This empty flag removes the prefer-stable switch to cause dev dependencies to be installed
24+
next-laravel: false
25+
- php: 7.4
26+
laravel: 8.*
27+
composer-flags: '--prefer-stable'
28+
next-laravel: true
2129

2230
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - Composer ${{ matrix.composer-flags }}
2331

2432
steps:
2533
- name: Checkout code
26-
uses: actions/checkout@v1
34+
uses: actions/checkout@v2
2735

2836
- name: Cache dependencies
29-
uses: actions/cache@v1
37+
uses: actions/cache@v2
3038
with:
3139
path: ~/.composer/cache/files
3240
key: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}-flags-${{ matrix.composer-flags }}

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.2.0 (2020-??-??)
4+
5+
- Added support for Laravel 8
6+
37
## 1.1.0 (2020-03-21)
48

59
- Add a notification channel to send SMS messages

composer.json

+4-5
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
"keywords": ["laravel", "twilio"],
66
"require": {
77
"php": "^7.2",
8-
"illuminate/support": "^6.0|^7.0",
8+
"illuminate/support": "^6.0|^7.0|^8.0",
99
"twilio/sdk": "^6.0"
1010
},
1111
"require-dev": {
12-
"friendsofphp/php-cs-fixer": "^2.16.1",
12+
"friendsofphp/php-cs-fixer": "^2.16.4",
1313
"guzzlehttp/guzzle": "^6.3|^7.0",
14-
"laravel/framework": "^6.0|^7.0",
15-
"orchestra/testbench": "^4.0|^5.0",
14+
"laravel/framework": "^6.0|^7.0|^8.0",
15+
"orchestra/testbench": "^4.0|^5.0|^6.0",
1616
"phpunit/phpunit": "^8.0|^9.0"
1717
},
1818
"suggest": {
@@ -29,7 +29,6 @@
2929
}
3030
},
3131
"minimum-stability": "dev",
32-
"prefer-stable": true,
3332
"config": {
3433
"sort-packages": true
3534
},

0 commit comments

Comments
 (0)