-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
67 lines (67 loc) · 1.73 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
67
{
"name": "rodrigofs/filament-maskinput",
"description": "Alternative the alpine mask.",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Rodrigofs\\FilamentMaskInput\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rodrigofs\\FilamentMaskInput\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Rodrigo Fernandes",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"spatie/laravel-package-tools": "^1.15.0",
"filament/filament": "v3.*"
},
"require-dev": {
"laravel/pint": "^1.0",
"larastan/larastan": "v2.7.0",
"orchestra/testbench": "^8.0",
"phpunit/phpunit": "^10",
"nunomaduro/collision": "^v7.8.1",
"pestphp/pest": "^v2.24.3",
"pestphp/pest-plugin-laravel": "v2.2.0",
"pestphp/pest-plugin-livewire": "v2.1.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test:pest": "vendor/bin/pest",
"test:pint": "vendor/bin/pint",
"test:phpstan": "vendor/bin/phpstan",
"test": [
"@test:pest",
"@test:phpstan",
"@test:pint"
]
},
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
},
"extra": {
"laravel": {
"providers": [
"Rodrigofs\\FilamentMaskInput\\FilamentMaskInputServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}