generated from blade-ui-kit/blade-icons-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
54 lines (54 loc) · 1.39 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
{
"name": "ssmusoke/blade-healthicons",
"description": "A package to easily make use of Health icons in your Laravel Blade views.",
"keywords": ["Blade", "health icons", "Laravel"],
"homepage": "https://github.com/ssmusoke/blade-healthicons",
"license": "MIT",
"authors": [
{
"name": "Stephen Senkomago Musoke"
}
],
"require": {
"php": "^7.4|^8.0",
"blade-ui-kit/blade-icons": "^1.1"
},
"require-dev": {
"ext-dom": "*",
"orchestra/testbench": "^6.0",
"pestphp/pest": "^1.8",
"phpstan/phpstan": "^0.12.82",
"spatie/pest-plugin-snapshots": "^1.0.1",
"symfony/var-dumper": "^5.1"
},
"autoload": {
"psr-4": {
"SSMusoke\\HealthIcons\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SSMusoke\\HealthIcons\\Tests\\": "tests/"
}
},
"scripts": {
"test:types": "phpstan analyse --ansi --memory-limit=0",
"test:unit": "pest --colors=always",
"test": [
"@test:types",
"@test:unit"
]
},
"extra": {
"laravel": {
"providers": [
"SSMusoke\\HealthIcons\\BladeHealthIconsServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}