Skip to content

Commit

Permalink
Merge pull request #23 from Jubeki/filament-3
Browse files Browse the repository at this point in the history
Filament 3 Support
  • Loading branch information
rahmanramsi authored Aug 12, 2023
2 parents 1876a89 + ebf93bd commit 34250e6
Show file tree
Hide file tree
Showing 10 changed files with 13,009 additions and 8,832 deletions.
16 changes: 16 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
* text=auto

*.blade.php diff=html
*.css diff=css
*.html diff=html
*.md diff=markdown
*.php diff=php

/art export-ignore
.gitignore export-ignore
composer.lock export-ignore
mix-manifest.json export-ignore
package-lock.json export-ignore
package.json export-ignore
tailwind.config.js export-ignore
webpack.mix.js export-ignore
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
/node_modules
/node_modules
/vendor
composer.lock
25 changes: 14 additions & 11 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@
}
],
"require": {
"php": "^8.0",
"spatie/laravel-package-tools": "^1.9.2",
"illuminate/contracts": "^8.0|^9.0|^10.0",
"filament/forms": "^2.0"
"php": "^8.1",
"spatie/laravel-package-tools": "^1.16",
"illuminate/contracts": "^10.0",
"filament/forms": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"nunomaduro/collision": "^6.0",
"orchestra/testbench": "^7.0",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.1",
"phpunit/phpunit": "^9.5"
"friendsofphp/php-cs-fixer": "^3.22",
"nunomaduro/collision": "^7.8",
"orchestra/testbench": "^8.5",
"pestphp/pest": "^2.13",
"pestphp/pest-plugin-laravel": "^2.1",
"phpunit/phpunit": "^10.3"
},
"autoload": {
"psr-4": {
Expand All @@ -47,7 +47,10 @@
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
},
"config": {
"sort-packages": true
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
Expand Down
Loading

0 comments on commit 34250e6

Please sign in to comment.