File tree Expand file tree Collapse file tree 3 files changed +15
-12
lines changed
Expand file tree Collapse file tree 3 files changed +15
-12
lines changed Original file line number Diff line number Diff line change @@ -16,14 +16,19 @@ jobs:
1616 fail-fast : true
1717 matrix :
1818 os : [ubuntu-latest, windows-latest]
19- php : [8.2]
20- laravel : ['11.*', '12.*']
19+ php : [8.2, 8.3 ]
20+ laravel : ['11.*', '12.*', '13.*' ]
2121 stability : [prefer-stable]
22+ exclude :
23+ - php : 8.2
24+ laravel : 13.*
2225 include :
2326 - laravel : 11.*
2427 testbench : 9.*
2528 - laravel : 12.*
2629 testbench : 10.*
30+ - laravel : 13.*
31+ testbench : 11.*
2732
2833 name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2934
4348 echo "::add-matcher::${{ runner.tool_cache }}/php.json"
4449 echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
4550
51+ - name : Require Pest 4 for Laravel 13
52+ if : matrix.laravel == '13.*'
53+ shell : bash
54+ run : composer require "pestphp/pest:^4.0" "pestphp/pest-plugin-laravel:^4.0" --dev --no-interaction --no-update
55+
4656 - name : Install dependencies
4757 run : |
4858 composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
Original file line number Diff line number Diff line change 2222 ],
2323 "require" : {
2424 "php" : " ^8.2" ,
25- "illuminate/contracts" : " ^11.0|^12.0" ,
26- "illuminate/support" : " ^11.0|^12.0" ,
25+ "illuminate/contracts" : " ^11.0|^12.0|^13.0 " ,
26+ "illuminate/support" : " ^11.0|^12.0|^13.0 " ,
2727 "livewire/livewire" : " ^4.0" ,
2828 "spatie/laravel-collection-macros" : " ^7.13|^8.0" ,
2929 "spatie/laravel-package-tools" : " ^1.16.1"
3030 },
3131 "require-dev" : {
3232 "ext-dom" : " *" ,
3333 "nunomaduro/collision" : " ^8.0" ,
34- "orchestra/testbench" : " ^9.0|^10.0" ,
34+ "orchestra/testbench" : " ^9.0|^10.0|^11.0 " ,
3535 "pestphp/pest" : " ^3.7" ,
3636 "pestphp/pest-plugin-laravel" : " ^3.1" ,
3737 "spatie/laravel-ray" : " ^1.32.6" ,
Original file line number Diff line number Diff line change 55 <directory >tests</directory >
66 </testsuite >
77 </testsuites >
8- <coverage >
9- <report >
10- <html outputDirectory =" build/coverage" />
11- <text outputFile =" build/coverage.txt" />
12- <clover outputFile =" build/logs/clover.xml" />
13- </report >
14- </coverage >
158 <logging >
169 <junit outputFile =" build/report.junit.xml" />
1710 </logging >
You can’t perform that action at this time.
0 commit comments