File tree Expand file tree Collapse file tree 4 files changed +16
-13
lines changed
Expand file tree Collapse file tree 4 files changed +16
-13
lines changed Original file line number Diff line number Diff line change @@ -23,12 +23,14 @@ jobs:
2323 fail-fast : false
2424 matrix :
2525 os : [ubuntu-latest]
26- php : [8.2, 8.3]
27- laravel : [10.*, 11.*]
28- statamic : [5.*]
29- dependency-version : [prefer-stable]
26+ php : [8.2, 8.3, 8.4]
27+ laravel : [10.*, 11.*, 12.*]
28+ stability : [prefer-lowest, prefer-stable]
29+ exclude :
30+ - php : 8.4
31+ laravel : 10.*
3032
31- name : P${{ matrix.php }} - L${{ matrix.laravel }} - S ${{ matrix.statamic }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
33+ name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
3234
3335 steps :
3436 - name : Checkout code
4850
4951 - name : Install dependencies
5052 run : |
51- composer require "statamic/cms:${{ matrix.statamic }}" " laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update
52- composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
53+ composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update
54+ composer update --${{ matrix.stability }} --prefer-dist --no-interaction
5355
5456 - name : Execute tests
5557 run : vendor/bin/phpunit
Original file line number Diff line number Diff line change 33.DS_Store
44composer.lock
55.php-cs-fixer.cache
6- build / report.junit.xml
6+ .phpunit.cache
Original file line number Diff line number Diff line change 2323 }
2424 ],
2525 "require" : {
26- "php" : " ^8.1 " ,
26+ "php" : " ^8.2 " ,
2727 "meilisearch/meilisearch-php" : " ^1.0" ,
2828 "guzzlehttp/guzzle" : " ^7.3" ,
2929 "http-interop/http-factory-guzzle" : " ^1.0" ,
30- "illuminate/support" : " ^10.0 || ^11.0" ,
30+ "illuminate/support" : " ^10.0 || ^11.0 || ^12.0 " ,
3131 "statamic/cms" : " ^5.0"
3232 },
3333 "require-dev" : {
34- "laravel/pint" : " ^1.17 " ,
35- "orchestra/testbench" : " ^8.14 || ^9.0" ,
36- "phpunit/phpunit" : " ^10.0"
34+ "laravel/pint" : " ^1.21 " ,
35+ "orchestra/testbench" : " ^8.14 || ^9.0 || ^10.0 " ,
36+ "phpunit/phpunit" : " ^10.0 || ^11.5.10 "
3737 },
3838 "autoload" : {
3939 "psr-4" : {
Original file line number Diff line number Diff line change 1+ ! .gitignore
You can’t perform that action at this time.
0 commit comments