Skip to content

Commit 0f3ec27

Browse files
committed
Squashed 'packages/fields/' changes from 07f5929..95464a3
95464a3 build(deps): bump actions/checkout from 5 to 6 (#48) 071cc0f Use php 8.3, Laravel 12.x 0f69bbd Pest plugin upgrade e6c2693 PHP 8.3 21498fa Merge pull request #10 from backstagephp/version-tree-fixes 374b06e On push for tag git-subtree-dir: packages/fields git-subtree-split: 95464a3a009bce106886185afadd53a89586804c
1 parent 449f6e6 commit 0f3ec27

File tree

6 files changed

+17
-24
lines changed

6 files changed

+17
-24
lines changed

.github/workflows/fix-php-code-style-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
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

.github/workflows/phpstan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/run-tests.yml

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/update-changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
steps:
1515
- name: Checkout code
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717
with:
1818
ref: main
1919

composer.json

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
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",
@@ -32,9 +32,9 @@
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"
@@ -74,8 +74,6 @@
7474
}
7575
}
7676
},
77-
"repositories": {
78-
},
7977
"minimum-stability": "beta",
8078
"prefer-stable": true
8179
}

src/FieldsServiceProvider.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
use Backstage\Fields\Contracts\FieldInspector;
66
use Backstage\Fields\Services\FieldInspectionService;
77
use Backstage\Fields\Testing\TestsFields;
8-
use Filament\Support\Assets\AlpineComponent;
98
use Filament\Support\Assets\Asset;
109
use Filament\Support\Assets\Css;
1110
use Filament\Support\Assets\Js;

0 commit comments

Comments
 (0)