Skip to content
This repository was archived by the owner on Feb 14, 2026. It is now read-only.

Commit 6bf16de

Browse files
Merge pull request #294 from dissto/fix-pest3-dep
Fix Pest v3 dependency
2 parents c8e5bc9 + a490bd0 commit 6bf16de

File tree

1 file changed

+64
-64
lines changed

1 file changed

+64
-64
lines changed

composer.json

Lines changed: 64 additions & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -1,66 +1,66 @@
11
{
2-
"name": "codewithdennis/filament-tests",
3-
"description": "A package that creates PEST tests specifically tailored for your filament resources",
4-
"keywords": [
5-
"laravel",
6-
"filament-tests",
7-
"filamentphp",
8-
"php",
9-
"pest"
10-
],
11-
"homepage": "https://github.com/codewithdennis/filament-tests",
12-
"license": "MIT",
13-
"authors": [
14-
{
15-
"name": "CodeWithDennis",
16-
"role": "Developer"
17-
}
18-
],
19-
"require": {
20-
"php": "^8.1",
21-
"spatie/laravel-package-tools": "^1.14.0",
22-
"illuminate/contracts": "^10.0|^11.0",
23-
"pestphp/pest-plugin-livewire": "^2.1"
24-
},
25-
"require-dev": {
26-
"laravel/pint": "^1.14",
27-
"nunomaduro/collision": "^7.8",
28-
"phpstan/extension-installer": "^1.1",
29-
"phpstan/phpstan-deprecation-rules": "^1.0"
30-
},
31-
"autoload": {
32-
"psr-4": {
33-
"CodeWithDennis\\FilamentTests\\": "src/"
34-
}
35-
},
36-
"autoload-dev": {
37-
"psr-4": {
38-
"CodeWithDennis\\FilamentTests\\Tests\\": "tests/"
39-
}
40-
},
41-
"scripts": {
42-
"start": [
43-
"Composer\\Config::disableProcessTimeout",
44-
"@composer run build"
45-
]
46-
},
47-
"config": {
48-
"sort-packages": true,
49-
"allow-plugins": {
50-
"pestphp/pest-plugin": true,
51-
"phpstan/extension-installer": true
52-
}
53-
},
54-
"extra": {
55-
"laravel": {
56-
"providers": [
57-
"CodeWithDennis\\FilamentTests\\FilamentTestsServiceProvider"
58-
],
59-
"aliases": {
60-
"FilamentTests": "CodeWithDennis\\FilamentTests\\Facades\\FilamentTests"
61-
}
62-
}
63-
},
64-
"minimum-stability": "dev",
65-
"prefer-stable": true
2+
"name": "codewithdennis/filament-tests",
3+
"description": "A package that creates PEST tests specifically tailored for your filament resources",
4+
"keywords": [
5+
"laravel",
6+
"filament-tests",
7+
"filamentphp",
8+
"php",
9+
"pest"
10+
],
11+
"homepage": "https://github.com/codewithdennis/filament-tests",
12+
"license": "MIT",
13+
"authors": [
14+
{
15+
"name": "CodeWithDennis",
16+
"role": "Developer"
17+
}
18+
],
19+
"require": {
20+
"php": "^8.1",
21+
"spatie/laravel-package-tools": "^1.14.0",
22+
"illuminate/contracts": "^10.0|^11.0",
23+
"pestphp/pest-plugin-livewire": "^2.1|^3.0"
24+
},
25+
"require-dev": {
26+
"laravel/pint": "^1.14",
27+
"nunomaduro/collision": "^7.8",
28+
"phpstan/extension-installer": "^1.1",
29+
"phpstan/phpstan-deprecation-rules": "^1.0"
30+
},
31+
"autoload": {
32+
"psr-4": {
33+
"CodeWithDennis\\FilamentTests\\": "src/"
34+
}
35+
},
36+
"autoload-dev": {
37+
"psr-4": {
38+
"CodeWithDennis\\FilamentTests\\Tests\\": "tests/"
39+
}
40+
},
41+
"scripts": {
42+
"start": [
43+
"Composer\\Config::disableProcessTimeout",
44+
"@composer run build"
45+
]
46+
},
47+
"config": {
48+
"sort-packages": true,
49+
"allow-plugins": {
50+
"pestphp/pest-plugin": true,
51+
"phpstan/extension-installer": true
52+
}
53+
},
54+
"extra": {
55+
"laravel": {
56+
"providers": [
57+
"CodeWithDennis\\FilamentTests\\FilamentTestsServiceProvider"
58+
],
59+
"aliases": {
60+
"FilamentTests": "CodeWithDennis\\FilamentTests\\Facades\\FilamentTests"
61+
}
62+
}
63+
},
64+
"minimum-stability": "dev",
65+
"prefer-stable": true
6666
}

0 commit comments

Comments
 (0)