generated from filamentphp/plugin-skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
66 lines (66 loc) · 1.85 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "marvinosswald/filament-input-select-affix",
"description": "this input enables you to render a select next to an input in a seamless fashion",
"keywords": [
"marvinosswald",
"laravel",
"filament-input-select-affix"
],
"homepage": "https://github.com/marvinosswald/filament-input-select-affix",
"license": "MIT",
"authors": [
{
"name": "Marvin Osswald",
"email": "mail@marvinosswald.de",
"role": "Developer"
}
],
"require": {
"php": "^8.1 | ^8.2",
"filament/filament": "^3.0",
"spatie/laravel-package-tools": "^1.16.1",
"illuminate/contracts": "^10.0|^11.0"
},
"require-dev": {
"nunomaduro/collision": "^v7.8.1",
"orchestra/testbench": "^v8.9.1",
"pestphp/pest": "^v2.24.3",
"pestphp/pest-plugin-laravel": "v2.2.0",
"pestphp/pest-plugin-livewire": "v2.1.0",
"phpunit/phpunit": "^10"
},
"autoload": {
"psr-4": {
"Marvinosswald\\FilamentInputSelectAffix\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Marvinosswald\\FilamentInputSelectAffix\\Tests\\": "tests"
}
},
"scripts": {
"test:pest": "vendor/bin/pest --parallel",
"test": [
"@test:pest",
"@test:phpstan"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Marvinosswald\\FilamentInputSelectAffix\\FilamentInputSelectAffixServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}