-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 963 Bytes
/
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
{
"name": "fahemdev/extra-icons",
"description": "A plugin to add extra icon packages to Filament.",
"version": "1.0.9",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"FahemDev\\ExtraIcons\\": "src/"
}
},
"authors": [
{
"name": "FahemDev",
"homepage": "https://fahemdev.com",
"email": "info@fahemdev.com"
}
],
"require": {
"php": "^8.1",
"blade-ui-kit/blade-icons": "^1.6",
"illuminate/support": "^10.34|^11.0",
"filament/filament": "^3.0"
},
"extra": {
"laravel": {
"providers": [
"FahemDev\\ExtraIcons\\ExtraIconsServiceProvider"
],
"commands": [
"Fahemdev\\ExtraIcons\\Console\\Commands\\PublishIconResourcesCommand"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}