Skip to content

Commit b85f5dd

Browse files
authored
Update dependencies for Filament v5
1 parent b919044 commit b85f5dd

File tree

4 files changed

+24
-21
lines changed

4 files changed

+24
-21
lines changed

.devcontainer/devcontainer.json

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
{
2-
"image": "mcr.microsoft.com/devcontainers/php:8.2",
3-
"forwardPorts": [
4-
8000,
5-
5173,
6-
9000,
7-
9003
8-
],
9-
"remoteEnv": {
10-
"COMPOSER_MEMORY_LIMIT": "-1",
11-
"COMPOSER_PROCESS_TIMEOUT": "0"
12-
},
13-
"features": {
14-
"ghcr.io/devcontainers/features/node:1": {}
15-
}
2+
"image": "mcr.microsoft.com/devcontainers/php:8.3",
3+
"forwardPorts": [
4+
8000,
5+
5173,
6+
9000,
7+
9003
8+
],
9+
"remoteEnv": {
10+
"COMPOSER_MEMORY_LIMIT": "-1",
11+
"COMPOSER_PROCESS_TIMEOUT": "0",
12+
"PHPUNIT_TELEMETRY": "off"
13+
},
14+
"features": {
15+
"ghcr.io/devcontainers/features/node:1": {}
16+
}
1617
}

composer.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,22 @@
1717
],
1818
"require": {
1919
"php": "^8.2",
20-
"filament/filament": "^4.0",
20+
"filament/filament": "^5.0",
2121
"illuminate/contracts": "^11.0 | ^12.0",
22-
"pboivin/filament-peek": "^3.0",
22+
"livewire/livewire": "^4.0",
23+
"pboivin/filament-peek": "^4.0",
2324
"spatie/laravel-package-tools": "^1.13.5"
2425
},
2526
"require-dev": {
2627
"driftingly/rector-laravel": "^2.0",
27-
"filament/upgrade": "^4.0",
28+
"filament/upgrade": "^5.0",
2829
"larastan/larastan": "^2.9 | ^3.7",
2930
"laravel/pint": "^1.24",
3031
"nunomaduro/collision": "^8.0",
3132
"orchestra/testbench": "^10.0",
32-
"pestphp/pest": "^3.0",
33-
"pestphp/pest-plugin-laravel": "^3.1",
34-
"pestphp/pest-plugin-livewire": "^3.0",
33+
"pestphp/pest": "^4.0",
34+
"pestphp/pest-plugin-laravel": "^4.0",
35+
"pestphp/pest-plugin-livewire": "^4.0",
3536
"phpstan/phpstan-deprecation-rules": "^2.0",
3637
"phpstan/phpstan-phpunit": "^2.0",
3738
"rector/rector": "^2.1",

phpunit.xml.dist

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
>
2222
<php>
2323
<env name="APP_KEY" value="base64:+1JX1LrX2QMk/Gaxv5r89uiy9JWOMKSKhUlwVrJL1A8="/>
24+
<env name="PHPUNIT_TELEMETRY" value="off"/>
2425
</php>
2526
<source ignoreIndirectDeprecations="true" restrictNotices="true" restrictWarnings="true">
2627
<include>

tests/Commands/ClearRoutesCacheCommand.test.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
describe(ClearRoutesCacheCommand::class, function () {
1212
beforeEach(function () {
13-
Config::set('filament-fabricator.routing.prefix', null);
13+
Config::set('filament-fabricator.routing.prefix');
1414
});
1515

1616
it('can be resolved through the container', function () {

0 commit comments

Comments
 (0)