File tree Expand file tree Collapse file tree 3 files changed +7
-8
lines changed
Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -13,13 +13,13 @@ jobs:
1313 fail-fast : true
1414 matrix :
1515 php : [8.5, 8.4, 8.3]
16- laravel : [12.*]
16+ laravel : [12.*, 13.* ]
1717 statamic : [6.*]
1818 include :
1919 - laravel : 12.*
2020 testbench : 10.*
21- pest : 3 .*
22- snapshots : 2 .*
21+ - laravel : 13 .*
22+ testbench : 11 .*
2323
2424 name : PHP ${{ matrix.php }} / Laravel ${{ matrix.laravel }} / Statamic ${{ matrix.statamic }}
2525
4141
4242 - name : Install dependencies
4343 run : |
44- composer require "statamic/cms:${{ matrix.statamic }}" "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "pestphp/pest:${{ matrix.pest }}" "pestphp/pest-plugin-laravel:${{ matrix.pest }}" "spatie/pest-plugin-snapshots:${{ matrix.snapshots }}" --no-interaction --no-update
44+ composer require "statamic/cms:${{ matrix.statamic }}" "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
4545 composer update --prefer-dist --no-interaction --no-progress
4646
4747 - name : Check code style
Original file line number Diff line number Diff line change 2626 "php" : " ^8.3" ,
2727 "firebase/php-jwt" : " ^6.10 || ^7.0" ,
2828 "guzzlehttp/guzzle" : " ^7.8" ,
29- "laravel/framework" : " ^12.0" ,
3029 "leocavalcante/redact-sensitive" : " ^0.4.1" ,
3130 "muxinc/mux-php" : " ^5.0" ,
3231 "srwiez/thumbhash" : " ^1.2" ,
3837 "laravel/facade-documenter" : " dev-main" ,
3938 "laravel/pint" : " ^1.14" ,
4039 "mockery/mockery" : " ^1.6" ,
41- "orchestra/testbench" : " ^10.0" ,
40+ "orchestra/testbench" : " ^10.0 || ^11.0 " ,
4241 "pestphp/pest" : " ^4.1" ,
4342 "pestphp/pest-plugin-laravel" : " ^4.0" ,
4443 "spatie/pest-plugin-snapshots" : " ^2.1" ,
Original file line number Diff line number Diff line change 88
99trait HasCommandOutputStyles
1010{
11- protected function initialize (InputInterface $ input , OutputInterface $ output )
11+ protected function initialize (InputInterface $ input , OutputInterface $ output ): void
1212 {
1313 $ this ->registerStyles ();
1414 }
1515
16- protected function registerStyles ()
16+ protected function registerStyles (): void
1717 {
1818 $ this ->output ->getFormatter ()->setStyle ('bold ' , new OutputFormatterStyle (options: ['bold ' ]));
1919 $ this ->output ->getFormatter ()->setStyle ('success ' , new OutputFormatterStyle ('green ' , options: ['bold ' ]));
You can’t perform that action at this time.
0 commit comments