generated from blade-ui-kit/blade-icons-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
69 lines (69 loc) · 1.81 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
{
"name": "anodyne/blade-fluentui-icons",
"description": "A package to easily make use of Heroicons in your Laravel Blade views.",
"keywords": [
"Blade",
"Fluent UI System",
"Laravel"
],
"homepage": "https://github.com/anodyne/blade-fluentui-icons",
"license": "MIT",
"authors": [
{
"name": "Anodyne Productions"
}
],
"require": {
"php": "^8.1",
"blade-ui-kit/blade-icons": "^1.5",
"illuminate/support": "^9.0|^10.0|^11.0"
},
"require-dev": {
"laravel/pint": "^1.15",
"microsoft/fluentui-system-icons": "1.1.269",
"orchestra/testbench": "^7.0|^8.0|^9.0",
"phpunit/phpunit": "^9.5|^10.0|^11.0"
},
"repositories": [
{
"type": "package",
"package": {
"name": "microsoft/fluentui-system-icons",
"version": "1.1.269",
"dist": {
"url": "https://github.com/microsoft/fluentui-system-icons/archive/refs/tags/1.1.269.zip",
"type": "zip"
}
}
}
],
"autoload": {
"psr-4": {
"Anodyne\\FluentUiIcons\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"scripts": {
"update-icons": [
"./bin/compile.sh ./vendor/microsoft/fluentui-system-icons/assets"
],
"lint": "vendor/bin/pint",
"test": "vendor/bin/phpunit --colors=always"
},
"extra": {
"laravel": {
"providers": [
"Anodyne\\FluentUiIcons\\BladeFluentUiIconsServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}