generated from rawilk/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathcomposer.json
84 lines (84 loc) · 2.37 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "rawilk/laravel-form-components",
"description": "Set of Blade components for TailwindCSS forms.",
"keywords": [
"rawilk",
"laravel-form-components",
"Tailwind",
"form",
"Laravel",
"Blade",
"date picker",
"toggle",
"flatpickr",
"custom-select",
"filepond"
],
"homepage": "https://github.com/rawilk/laravel-form-components",
"license": "MIT",
"authors": [
{
"name": "Randall Wilk",
"email": "[email protected]",
"homepage": "https://randallwilk.dev",
"role": "Developer"
}
],
"require": {
"php": "^8.0|^8.1|^8.2",
"illuminate/filesystem": "^9.0|^10.0",
"illuminate/support": "^9.0|^10.0",
"illuminate/view": "^9.0|^10.0",
"spatie/laravel-package-tools": "^1.14"
},
"require-dev": {
"blade-ui-kit/blade-heroicons": "^2.0",
"laravel/pint": "^1.5",
"livewire/livewire": "^2.8",
"orchestra/testbench": "^7.0|^8.0",
"pestphp/pest": "^1.22",
"pestphp/pest-plugin-laravel": "^1.4",
"pestphp/pest-plugin-parallel": "^1.2",
"sinnbeck/laravel-dom-assertions": "^1.3",
"spatie/laravel-ray": "^1.25"
},
"suggest": {
"blade-ui-kit/blade-heroicons": "Required for the default icons used in this package",
"livewire/livewire": "Consider livewire for handling your form submissions"
},
"autoload": {
"psr-4": {
"Rawilk\\FormComponents\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Rawilk\\FormComponents\\Tests\\": "tests"
}
},
"scripts": {
"post-autoload-dump": [
"@php ./vendor/bin/testbench package:discover --ansi"
],
"test": "vendor/bin/pest -p",
"format": "vendor/bin/pint --dirty"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"Rawilk\\FormComponents\\FormComponentsServiceProvider"
],
"aliases": {
"FormComponents": "Rawilk\\FormComponents\\Facades\\FormComponents"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}