Skip to content

Commit ebf93bd

Browse files
committed
Filament 3 Support
1 parent 1876a89 commit ebf93bd

File tree

10 files changed

+13009
-8832
lines changed

10 files changed

+13009
-8832
lines changed

.gitattributes

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
* text=auto
2+
3+
*.blade.php diff=html
4+
*.css diff=css
5+
*.html diff=html
6+
*.md diff=markdown
7+
*.php diff=php
8+
9+
/art export-ignore
10+
.gitignore export-ignore
11+
composer.lock export-ignore
12+
mix-manifest.json export-ignore
13+
package-lock.json export-ignore
14+
package.json export-ignore
15+
tailwind.config.js export-ignore
16+
webpack.mix.js export-ignore

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
/node_modules
1+
/node_modules
2+
/vendor
3+
composer.lock

composer.json

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^8.0",
20-
"spatie/laravel-package-tools": "^1.9.2",
21-
"illuminate/contracts": "^8.0|^9.0|^10.0",
22-
"filament/forms": "^2.0"
19+
"php": "^8.1",
20+
"spatie/laravel-package-tools": "^1.16",
21+
"illuminate/contracts": "^10.0",
22+
"filament/forms": "^3.0"
2323
},
2424
"require-dev": {
25-
"friendsofphp/php-cs-fixer": "^3.8",
26-
"nunomaduro/collision": "^6.0",
27-
"orchestra/testbench": "^7.0",
28-
"pestphp/pest": "^1.21",
29-
"pestphp/pest-plugin-laravel": "^1.1",
30-
"phpunit/phpunit": "^9.5"
25+
"friendsofphp/php-cs-fixer": "^3.22",
26+
"nunomaduro/collision": "^7.8",
27+
"orchestra/testbench": "^8.5",
28+
"pestphp/pest": "^2.13",
29+
"pestphp/pest-plugin-laravel": "^2.1",
30+
"phpunit/phpunit": "^10.3"
3131
},
3232
"autoload": {
3333
"psr-4": {
@@ -47,7 +47,10 @@
4747
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
4848
},
4949
"config": {
50-
"sort-packages": true
50+
"sort-packages": true,
51+
"allow-plugins": {
52+
"pestphp/pest-plugin": true
53+
}
5154
},
5255
"extra": {
5356
"laravel": {

0 commit comments

Comments
 (0)