Skip to content

Commit 402ac4d

Browse files
authored
Merge pull request #117 from tiagof/upgrade/v3
Filament v3 support
2 parents 325bfa1 + aee9589 commit 402ac4d

File tree

12 files changed

+3632
-2150
lines changed

12 files changed

+3632
-2150
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/vendor/
22
.phpunit.result.cache
33

4-
build/phpstan
4+
build/
5+
.idea/

composer.json

Lines changed: 69 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -1,70 +1,72 @@
11
{
2-
"name": "konnco/filament-import",
3-
"description": "",
4-
"keywords": [
5-
"import",
6-
"laravel",
7-
"filament-import"
8-
],
9-
"autoload": {
10-
"psr-4": {
11-
"Konnco\\FilamentImport\\": "src/"
12-
}
13-
},
14-
"license": "MIT",
15-
"authors": [
16-
{
17-
"name": "Franky So",
18-
"email": "frankyso.mail@gmail.com"
19-
}
20-
],
21-
"require": {
22-
"php": "^8.0",
23-
"filament/filament": "^2.0",
24-
"filament/notifications": "^2.0",
25-
"illuminate/contracts": "^9.0|^10.0",
26-
"illuminate/support": "^9.0|^10.0",
27-
"maatwebsite/excel": "^3.1",
28-
"psr/simple-cache": "^2.0|^3.0",
29-
"spatie/laravel-package-tools": "^1.14"
30-
},
31-
"require-dev": {
32-
"laravel/pint": "^1.0",
33-
"nunomaduro/collision": "^6.0|^7.0",
34-
"nunomaduro/larastan": "^2.0",
35-
"orchestra/testbench": "^7.0",
36-
"pestphp/pest": "^1.21",
37-
"pestphp/pest-plugin-laravel": "^1.1",
38-
"phpstan/extension-installer": "^1.1",
39-
"phpstan/phpstan-deprecation-rules": "^1.0",
40-
"phpstan/phpstan-phpunit": "^1.0",
41-
"phpunit/phpunit": "^9.5|^10.0"
42-
},
43-
"autoload-dev": {
44-
"psr-4": {
45-
"Konnco\\FilamentImport\\Tests\\": "tests"
46-
}
47-
},
48-
"scripts": {
49-
"analyse": "vendor/bin/phpstan analyse",
50-
"test": "vendor/bin/pest",
51-
"test-coverage": "vendor/bin/pest --coverage",
52-
"format": "vendor/bin/pint"
53-
},
54-
"config": {
55-
"sort-packages": true,
56-
"allow-plugins": {
57-
"pestphp/pest-plugin": true,
58-
"phpstan/extension-installer": true
59-
}
60-
},
61-
"minimum-stability": "dev",
62-
"prefer-stable": true,
63-
"extra": {
64-
"laravel": {
65-
"providers": [
66-
"Konnco\\FilamentImport\\FilamentImportServiceProvider"
67-
]
68-
}
2+
"name": "konnco/filament-import",
3+
"description": "",
4+
"keywords": [
5+
"import",
6+
"laravel",
7+
"filament-import"
8+
],
9+
"autoload": {
10+
"psr-4": {
11+
"Konnco\\FilamentImport\\": "src/"
6912
}
13+
},
14+
"license": "MIT",
15+
"authors": [
16+
{
17+
"name": "Franky So",
18+
"email": "frankyso.mail@gmail.com"
19+
}
20+
],
21+
"require": {
22+
"php": "^8.0",
23+
"filament/filament": "^3",
24+
"filament/notifications": "^3.0",
25+
"illuminate/contracts": "^10",
26+
"illuminate/support": "^10.0",
27+
"livewire/livewire": "^3",
28+
"maatwebsite/excel": "^3.1.48",
29+
"psr/simple-cache": "^2.0|^3.0",
30+
"spatie/laravel-package-tools": "^1.16"
31+
},
32+
"require-dev": {
33+
"laravel/pint": "^1.11",
34+
"nunomaduro/collision": "^6.4|^7.0",
35+
"nunomaduro/larastan": "^2.6.4",
36+
"orchestra/testbench": "^8.8",
37+
"pestphp/pest": "^2",
38+
"pestphp/pest-plugin-laravel": "^2",
39+
"pestphp/pest-plugin-livewire": "^2.1",
40+
"phpstan/extension-installer": "^1.3.1",
41+
"phpstan/phpstan-deprecation-rules": "^1.1.4",
42+
"phpstan/phpstan-phpunit": "^1.3.13",
43+
"phpunit/phpunit": "^9.6.10|^10.0"
44+
},
45+
"autoload-dev": {
46+
"psr-4": {
47+
"Konnco\\FilamentImport\\Tests\\": "tests"
48+
}
49+
},
50+
"scripts": {
51+
"analyse": "vendor/bin/phpstan analyse",
52+
"test": "vendor/bin/pest",
53+
"test-coverage": "vendor/bin/pest --coverage",
54+
"format": "vendor/bin/pint"
55+
},
56+
"config": {
57+
"sort-packages": true,
58+
"allow-plugins": {
59+
"pestphp/pest-plugin": true,
60+
"phpstan/extension-installer": true
61+
}
62+
},
63+
"minimum-stability": "dev",
64+
"prefer-stable": true,
65+
"extra": {
66+
"laravel": {
67+
"providers": [
68+
"Konnco\\FilamentImport\\FilamentImportServiceProvider"
69+
]
70+
}
71+
}
7072
}

0 commit comments

Comments
 (0)