Skip to content

Commit fb04767

Browse files
committed
Update composer.json
1 parent 215d1ea commit fb04767

3 files changed

Lines changed: 8 additions & 14 deletions

File tree

.github/workflows/phpstan.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ jobs:
2929
"filament/filament:5.*" \
3030
"livewire/livewire:^4.0" \
3131
"pestphp/pest:^4.0" \
32-
"pestphp/pest-plugin-arch:^4.0" \
3332
"pestphp/pest-plugin-laravel:^4.0" \
3433
"pestphp/pest-plugin-livewire:^4.0" \
3534
--no-interaction --no-update --no-progress --ansi

.github/workflows/run-tests.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ jobs:
1919
testbench: 9.*
2020
livewire: ^3.0
2121
pest: ^3.8
22-
pest_plugin_arch: ^3.1
2322
pest_plugin_laravel: ^3.1
2423
pest_plugin_livewire: ^3.1
2524
- php: 8.2
@@ -28,7 +27,6 @@ jobs:
2827
testbench: 10.*
2928
livewire: ^3.0
3029
pest: ^3.8
31-
pest_plugin_arch: ^3.1
3230
pest_plugin_laravel: ^3.1
3331
pest_plugin_livewire: ^3.1
3432
- php: 8.3
@@ -37,7 +35,6 @@ jobs:
3735
testbench: 10.*
3836
livewire: ^4.0
3937
pest: ^4.0
40-
pest_plugin_arch: ^4.0
4138
pest_plugin_laravel: ^4.0
4239
pest_plugin_livewire: ^4.0
4340
- php: 8.4
@@ -46,7 +43,6 @@ jobs:
4643
testbench: 10.*
4744
livewire: ^4.0
4845
pest: ^4.0
49-
pest_plugin_arch: ^4.0
5046
pest_plugin_laravel: ^4.0
5147
pest_plugin_livewire: ^4.0
5248
- php: 8.5
@@ -55,7 +51,6 @@ jobs:
5551
testbench: 10.*
5652
livewire: ^4.0
5753
pest: ^4.0
58-
pest_plugin_arch: ^4.0
5954
pest_plugin_laravel: ^4.0
6055
pest_plugin_livewire: ^4.0
6156

@@ -99,7 +94,6 @@ jobs:
9994
"filament/filament:${{ matrix.filament }}" \
10095
"livewire/livewire:${{ matrix.livewire }}" \
10196
"pestphp/pest:${{ matrix.pest }}" \
102-
"pestphp/pest-plugin-arch:${{ matrix.pest_plugin_arch }}" \
10397
"pestphp/pest-plugin-laravel:${{ matrix.pest_plugin_laravel }}" \
10498
"pestphp/pest-plugin-livewire:${{ matrix.pest_plugin_livewire }}" \
10599
--no-interaction --no-update --no-progress --ansi
@@ -111,9 +105,15 @@ jobs:
111105
- name: Execute tests with coverage
112106
run: vendor/bin/pest --coverage --coverage-clover build/logs/clover.xml
113107

108+
- name: Sanitize artifact name
109+
run: |
110+
LARAVEL_SAFE=$(echo "${{ matrix.laravel }}" | tr '*' 'x')
111+
FILAMENT_SAFE=$(echo "${{ matrix.filament }}" | tr '*' 'x')
112+
echo "ARTIFACT_NAME=coverage-${{ matrix.php }}-${LARAVEL_SAFE}-${FILAMENT_SAFE}" >> $GITHUB_ENV
113+
114114
- name: Upload coverage artifact
115115
uses: actions/upload-artifact@v4
116116
with:
117-
name: coverage-${{ matrix.php }}-${{ matrix.laravel }}-${{ matrix.filament }}
117+
name: ${{ env.ARTIFACT_NAME }}
118118
path: build/logs/clover.xml
119119
if-no-files-found: error

composer.json

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,11 @@
2727
"illuminate/contracts": "^11.0 || ^12.0"
2828
},
2929
"require-dev": {
30-
"larastan/larastan": "^3.0",
3130
"laravel/pint": "^1.0",
3231
"orchestra/testbench": "^9.0 || ^10.0",
3332
"pestphp/pest": "^3.8 || ^4.0",
34-
"pestphp/pest-plugin-arch": "^3.1 || ^4.0",
3533
"pestphp/pest-plugin-laravel": "^3.1 || ^4.0",
36-
"pestphp/pest-plugin-livewire": "^3.1 || ^4.0",
37-
"phpstan/extension-installer": "^1.3",
38-
"phpstan/phpstan-deprecation-rules": "^1.1",
39-
"phpstan/phpstan-phpunit": "^1.4"
34+
"pestphp/pest-plugin-livewire": "^3.1 || ^4.0"
4035
},
4136
"autoload": {
4237
"psr-4": {

0 commit comments

Comments
 (0)