forked from Ympact/flux-icons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.12 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
{
"name": "ympact/flux-icons",
"description": "A package to provide icons from different vendors for Livewire Flux.",
"keywords": ["flux", "laravel", "livewire", "components", "ui", "icons"],
"type": "library",
"require": {
"php": "^8.1",
"illuminate/support": "^10.0|^11.0",
"livewire/flux": "^1.0",
"illuminate/console": "^10.0|^11.0",
"illuminate/view": "^10.0|^11.0",
"symfony/console": "^6.0|^7.0",
"livewire/livewire": "^3.5",
"laravel/prompts": "^0.1|^0.2|^0.3"
},
"require-dev": {
"phpunit/phpunit": "^9.0|^10.0|^11.0",
"mockery/mockery": "^1.6",
"orchestra/testbench": "^9.5"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Ympact\\FluxIcons\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Ympact\\FluxIcons\\FluxIconsServiceProvider"
]
}
},
"authors": [
{
"name": "Maurits",
"email": "maurits@ympact-technologies.nl"
}
],
"minimum-stability": "stable"
}