-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.25 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
{
"name": "flexiwind/flexiwind",
"description": "Laravel and Livewire package helpers to use tailwind css and apline js",
"type": "library",
"license": "MIT",
"keywords": [
"laravel",
"livewire",
"blade",
"ui",
"components",
"livewire-packages",
"livewire-components",
"alpinejs"
],
"authors": [
{
"name": "Tresor kasenda",
"email": "[email protected]",
"homepage": "https://github.com/Tresor-Kasenda"
}
],
"autoload": {
"psr-4": {
"Flexiwind\\Flexiwind\\": "src/"
}
},
"require": {
"illuminate/support": "^10.40"
},
"require-dev": {
"laravel/pint": "^1.13",
"orchestra/testbench": "^8.20",
"pestphp/pest": "^2.31"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
},
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true
},
"extra": {
"laravel": {
"providers": [
"Flexiwind\\Flexiwind\\FlexiwindServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}