File tree Expand file tree Collapse file tree 1 file changed +6
-15
lines changed
Expand file tree Collapse file tree 1 file changed +6
-15
lines changed Original file line number Diff line number Diff line change 99 strategy :
1010 fail-fast : false
1111 matrix :
12- php : ['8.2']
13- stability : [ prefer-stable ]
14- include :
15- - php : ' 8.1'
16- stability : prefer-lowest
17- - php : ' 8.1'
18- stability : prefer-stable
19- - php : ' 8.2'
20- stability : prefer-stable
21- - php : ' 8.3'
22- stability : prefer-stable
23- # - php: '8.4'
24- # stability: prefer-stable
12+ php : ['8.2', '8.3']
13+ stability : [prefer-stable]
14+ # Entferne PHP 8.1, da Laravel 11+ und 12.x PHP 8.2 oder höher erfordern.
15+ # Wenn du eine Version <= PHP 8.1 verwenden möchtest, musst du eventuell auf Laravel 10 downgraden.
2516
2617 name : PHP ${{ matrix.php }} - ${{ matrix.stability }}
2718 steps :
28- # basically git clone
19+ # Git-Checkout
2920 - uses : actions/checkout@v4
3021
3122 - name : Cache dependencies
3425 path : ~/.composer/cache/files
3526 key : dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
3627
37- # use PHP of specific version
28+ # PHP-Version einrichten
3829 - uses : shivammathur/setup-php@v2
3930 with :
4031 php-version : ${{ matrix.php }}
You can’t perform that action at this time.
0 commit comments