File tree 3 files changed +18
-7
lines changed
3 files changed +18
-7
lines changed Original file line number Diff line number Diff line change @@ -5,28 +5,36 @@ on: [push, pull_request]
5
5
jobs :
6
6
test :
7
7
runs-on : ubuntu-latest
8
+ continue-on-error : ${{ matrix.next-laravel }}
8
9
strategy :
9
10
fail-fast : true
10
11
matrix :
11
12
php : [7.2, 7.3, 7.4]
12
13
laravel : [^6.18, 7.*]
13
14
composer-flags : ['--prefer-stable']
15
+ next-laravel : [false]
14
16
include :
15
17
- php : 7.2
16
18
laravel : ^6.18
17
19
composer-flags : ' --prefer-stable --prefer-lowest'
20
+ next-laravel : false
18
21
- php : 7.4
19
22
laravel : 7.*
20
23
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
21
29
22
30
name : PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - Composer ${{ matrix.composer-flags }}
23
31
24
32
steps :
25
33
- name : Checkout code
26
- uses : actions/checkout@v1
34
+ uses : actions/checkout@v2
27
35
28
36
- name : Cache dependencies
29
- uses : actions/cache@v1
37
+ uses : actions/cache@v2
30
38
with :
31
39
path : ~/.composer/cache/files
32
40
key : dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}-flags-${{ matrix.composer-flags }}
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.2.0 (2020-??-??)
4
+
5
+ - Added support for Laravel 8
6
+
3
7
## 1.1.0 (2020-03-21)
4
8
5
9
- Add a notification channel to send SMS messages
Original file line number Diff line number Diff line change 5
5
"keywords" : [" laravel" , " twilio" ],
6
6
"require" : {
7
7
"php" : " ^7.2" ,
8
- "illuminate/support" : " ^6.0|^7.0" ,
8
+ "illuminate/support" : " ^6.0|^7.0|^8.0 " ,
9
9
"twilio/sdk" : " ^6.0"
10
10
},
11
11
"require-dev" : {
12
- "friendsofphp/php-cs-fixer" : " ^2.16.1 " ,
12
+ "friendsofphp/php-cs-fixer" : " ^2.16.4 " ,
13
13
"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 " ,
16
16
"phpunit/phpunit" : " ^8.0|^9.0"
17
17
},
18
18
"suggest" : {
29
29
}
30
30
},
31
31
"minimum-stability" : " dev" ,
32
- "prefer-stable" : true ,
33
32
"config" : {
34
33
"sort-packages" : true
35
34
},
You can’t perform that action at this time.
0 commit comments