generated from blade-ui-kit/blade-icons-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.68 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
{
"name": "anodyne/blade-mage-icons",
"description": "A package to easily make use of Mage Icons in your Laravel Blade views.",
"keywords": [
"Blade",
"Mage Icons",
"Laravel"
],
"homepage": "https://github.com/anodyne/blade-mage-icons",
"license": "MIT",
"authors": [
{
"name": "Anodyne Productions"
}
],
"require": {
"php": "~8.1.0|~8.2.0",
"blade-ui-kit/blade-icons": "^1.4",
"illuminate/support": "^9.0|^10.0"
},
"require-dev": {
"mage-icons/mage-icons": "0.7.0-beta",
"orchestra/testbench": "^7.0|^8.0",
"phpunit/phpunit": "^9.0"
},
"repositories": [
{
"type": "package",
"package": {
"name": "mage-icons/mage-icons",
"version": "0.7.0-beta",
"dist": {
"url": "https://github.com/Mage-Icons/mage-icons/archive/refs/tags/0.7.0-beta.zip",
"type": "zip"
}
}
}
],
"autoload": {
"psr-4": {
"Anodyne\\MageIcons\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"scripts": {
"update-icons": [
"./bin/compile.sh ./vendor/mage-icons/mage-icons/svg"
],
"test": "vendor/bin/phpunit --colors=always"
},
"extra": {
"laravel": {
"providers": [
"Anodyne\\MageIcons\\BladeMageIconsServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}