File tree Expand file tree Collapse file tree 3 files changed +6
-9
lines changed Expand file tree Collapse file tree 3 files changed +6
-9
lines changed Original file line number Diff line number Diff line change 77jobs :
88
99 check :
10- name : Run PHP tests - PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.dependency-version }}
10+ name : Run PHP tests - PHP ${{ matrix.php }} - ${{ matrix.dependency-version }}
1111 runs-on : ${{ matrix.os }}
1212 strategy :
1313 fail-fast : false
1414 matrix :
1515 php : [8.0, 8.1]
16- laravel : [9.*]
1716 dependency-version : [prefer-lowest, prefer-stable]
1817 os : [ubuntu-latest]
1918
3332 uses : actions/cache@v2
3433 with :
3534 path : ~/.composer/cache/files
36- key : composer-${{ runner.os }}-php-${{ matrix.php }}-laravel-${{ matrix.laravel }}- ${{ hashFiles('composer.json') }}
35+ key : composer-${{ runner.os }}-php-${{ matrix.php }}-${{ hashFiles('composer.json') }}
3736
3837 - name : Validate Composer configuration file
3938 run : composer validate --strict
4645 coverage : none
4746
4847 - name : Install dependencies
49- run : |
50- composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-progress --no-update
51- composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-progress --optimize-autoloader
48+ run : composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-progress --optimize-autoloader
5249
5350 - name : Lint code
5451 run : vendor/bin/php-cs-fixer fix --dry-run --diff
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ $user->accepted_terms_and_conditions_at;
6161## Requirements
6262
6363- PHP 8 or 8.1
64- - Laravel 8 or 9
64+ - Laravel ^9.2
6565
6666## How to install
6767
Original file line number Diff line number Diff line change 2626 ],
2727 "require" : {
2828 "php" : " ^8.0|^8.1" ,
29- "illuminate/database" : " ^9.0 " ,
30- "illuminate/support" : " ^9.0 "
29+ "illuminate/database" : " ^9.2 " ,
30+ "illuminate/support" : " ^9.2 "
3131 },
3232 "require-dev" : {
3333 "friendsofphp/php-cs-fixer" : " ^3.7" ,
You can’t perform that action at this time.
0 commit comments