Skip to content

Commit

Permalink
Merge pull request #117 from tiagof/upgrade/v3
Browse files Browse the repository at this point in the history
Filament v3 support
  • Loading branch information
frankyso committed Aug 23, 2023
2 parents 325bfa1 + aee9589 commit 402ac4d
Show file tree
Hide file tree
Showing 12 changed files with 3,632 additions and 2,150 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/vendor/
.phpunit.result.cache

build/phpstan
build/
.idea/
136 changes: 69 additions & 67 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,70 +1,72 @@
{
"name": "konnco/filament-import",
"description": "",
"keywords": [
"import",
"laravel",
"filament-import"
],
"autoload": {
"psr-4": {
"Konnco\\FilamentImport\\": "src/"
}
},
"license": "MIT",
"authors": [
{
"name": "Franky So",
"email": "frankyso.mail@gmail.com"
}
],
"require": {
"php": "^8.0",
"filament/filament": "^2.0",
"filament/notifications": "^2.0",
"illuminate/contracts": "^9.0|^10.0",
"illuminate/support": "^9.0|^10.0",
"maatwebsite/excel": "^3.1",
"psr/simple-cache": "^2.0|^3.0",
"spatie/laravel-package-tools": "^1.14"
},
"require-dev": {
"laravel/pint": "^1.0",
"nunomaduro/collision": "^6.0|^7.0",
"nunomaduro/larastan": "^2.0",
"orchestra/testbench": "^7.0",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.1",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9.5|^10.0"
},
"autoload-dev": {
"psr-4": {
"Konnco\\FilamentImport\\Tests\\": "tests"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"format": "vendor/bin/pint"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Konnco\\FilamentImport\\FilamentImportServiceProvider"
]
}
"name": "konnco/filament-import",
"description": "",
"keywords": [
"import",
"laravel",
"filament-import"
],
"autoload": {
"psr-4": {
"Konnco\\FilamentImport\\": "src/"
}
},
"license": "MIT",
"authors": [
{
"name": "Franky So",
"email": "frankyso.mail@gmail.com"
}
],
"require": {
"php": "^8.0",
"filament/filament": "^3",
"filament/notifications": "^3.0",
"illuminate/contracts": "^10",
"illuminate/support": "^10.0",
"livewire/livewire": "^3",
"maatwebsite/excel": "^3.1.48",
"psr/simple-cache": "^2.0|^3.0",
"spatie/laravel-package-tools": "^1.16"
},
"require-dev": {
"laravel/pint": "^1.11",
"nunomaduro/collision": "^6.4|^7.0",
"nunomaduro/larastan": "^2.6.4",
"orchestra/testbench": "^8.8",
"pestphp/pest": "^2",
"pestphp/pest-plugin-laravel": "^2",
"pestphp/pest-plugin-livewire": "^2.1",
"phpstan/extension-installer": "^1.3.1",
"phpstan/phpstan-deprecation-rules": "^1.1.4",
"phpstan/phpstan-phpunit": "^1.3.13",
"phpunit/phpunit": "^9.6.10|^10.0"
},
"autoload-dev": {
"psr-4": {
"Konnco\\FilamentImport\\Tests\\": "tests"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"format": "vendor/bin/pint"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Konnco\\FilamentImport\\FilamentImportServiceProvider"
]
}
}
}

0 comments on commit 402ac4d

Please sign in to comment.