File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 7
7
runs-on : ubuntu-latest
8
8
strategy :
9
9
matrix :
10
- php : [7.4, 8.0]
10
+ php : [7.4, 8.0, 8.1]
11
+ stability : [prefer-lowest, prefer-stable]
11
12
steps :
12
13
- name : Checkout
13
14
uses : actions/checkout@v2
31
32
restore-keys : ${{ runner.os }}-${{ matrix.php }}-composer-
32
33
33
34
- name : Install Composer dependencies
34
- run : composer install --no-progress --prefer-dist --optimize-autoloader
35
+ run : composer update --no-interaction --no- progress --no-suggest --optimize-autoloader --prefer-dist --${{ matrix.stability }}
35
36
36
37
- name : Check code style
37
38
run : vendor/bin/phpcs
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " sourcetoad/rule-helper-for-laravel" ,
3
+ "description" : " Rule helper for Laravel" ,
3
4
"type" : " library" ,
4
5
"license" : " MIT" ,
5
6
"minimum-stability" : " stable" ,
6
7
"require" : {
7
8
"php" : " ^7.4|^8.0" ,
9
+ "egulias/email-validator" : " ^2.1.21" ,
8
10
"laravel/framework" : " ^8.77"
9
11
},
10
12
"require-dev" : {
11
13
"ext-json" : " *" ,
12
- "orchestra/testbench" : " ^6.19 " ,
14
+ "orchestra/testbench" : " ^6.22 " ,
13
15
"squizlabs/php_codesniffer" : " ^3.6"
14
16
},
15
17
"autoload" : {
You can’t perform that action at this time.
0 commit comments