File tree Expand file tree Collapse file tree 6 files changed +17
-24
lines changed
Expand file tree Collapse file tree 6 files changed +17
-24
lines changed Original file line number Diff line number Diff line change 1414
1515 steps :
1616 - name : Checkout code
17- uses : actions/checkout@v5
17+ uses : actions/checkout@v6
1818 with :
1919 ref : ${{ github.head_ref }}
2020
Original file line number Diff line number Diff line change @@ -11,12 +11,12 @@ jobs:
1111 name : phpstan
1212 runs-on : ubuntu-latest
1313 steps :
14- - uses : actions/checkout@v5
14+ - uses : actions/checkout@v6
1515
1616 - name : Setup PHP
1717 uses : shivammathur/setup-php@v2
1818 with :
19- php-version : ' 8.2 '
19+ php-version : ' 8.3 '
2020 coverage : none
2121
2222 - name : Install composer dependencies
Original file line number Diff line number Diff line change @@ -13,22 +13,18 @@ jobs:
1313 fail-fast : true
1414 matrix :
1515 os : [ubuntu-latest, windows-latest]
16- php : [8.3, 8.2]
17- laravel : [11.*]
18- stability : [prefer-lowest, prefer-stable]
16+ php : [8.3]
17+ laravel : [12.*]
1918 include :
20- - laravel : 11.*
21- testbench : 9.*
22- carbon : ^2.72.2
23- exclude :
24- - laravel : 11.*
25- php : 8.1
19+ - laravel : 12.*
20+ testbench : 10.*
21+ carbon : 3.*
2622
27- name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix. os }}
23+ name : P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.os }}
2824
2925 steps :
3026 - name : Checkout code
31- uses : actions/checkout@v5
27+ uses : actions/checkout@v6
3228
3329 - name : Setup PHP
3430 uses : shivammathur/setup-php@v2
@@ -45,10 +41,10 @@ jobs:
4541 - name : Install dependencies
4642 run : |
4743 composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "nesbot/carbon:${{ matrix.carbon }}" --no-interaction --no-update
48- composer update --${{ matrix.stability }} -- prefer-dist --no-interaction
44+ composer update --prefer-dist --no-interaction
4945
5046 - name : List Installed Dependencies
5147 run : composer show -D
5248
5349 - name : Execute tests
54- run : vendor/bin/pest --ci
50+ run : vendor/bin/pest --ci --no-coverage
Original file line number Diff line number Diff line change 1313
1414 steps :
1515 - name : Checkout code
16- uses : actions/checkout@v5
16+ uses : actions/checkout@v6
1717 with :
1818 ref : main
1919
Original file line number Diff line number Diff line change 2020 }
2121 ],
2222 "require" : {
23- "php" : " ^8.2 " ,
23+ "php" : " ^8.3 " ,
2424 "baspa/laravel-timezones" : " ^1.2" ,
2525 "filament/filament" : " ^4.0" ,
2626 "saade/filament-adjacency-list" : " ^4.0" ,
3232 "nunomaduro/collision" : " ^8.1.1||^7.10.0" ,
3333 "nunomaduro/larastan" : " ^3.0" ,
3434 "orchestra/testbench" : " ^9.0.0" ,
35- "pestphp/pest" : " ^2.34 " ,
36- "pestphp/pest-plugin-arch" : " ^2 .0" ,
37- "pestphp/pest-plugin-laravel" : " ^2 .0" ,
35+ "pestphp/pest" : " ^4.1 " ,
36+ "pestphp/pest-plugin-arch" : " ^4 .0" ,
37+ "pestphp/pest-plugin-laravel" : " ^4 .0" ,
3838 "phpstan/extension-installer" : " ^1.1" ,
3939 "phpstan/phpstan-deprecation-rules" : " ^2.0" ,
4040 "phpstan/phpstan-phpunit" : " ^2.0"
7474 }
7575 }
7676 },
77- "repositories" : {
78- },
7977 "minimum-stability" : " beta" ,
8078 "prefer-stable" : true
8179}
Original file line number Diff line number Diff line change 55use Backstage \Fields \Contracts \FieldInspector ;
66use Backstage \Fields \Services \FieldInspectionService ;
77use Backstage \Fields \Testing \TestsFields ;
8- use Filament \Support \Assets \AlpineComponent ;
98use Filament \Support \Assets \Asset ;
109use Filament \Support \Assets \Css ;
1110use Filament \Support \Assets \Js ;
You can’t perform that action at this time.
0 commit comments