-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
63 lines (63 loc) · 1.63 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
{
"name": "mallardduck/blade-boxicons",
"description": "A package to easily make use of Boxicons in your Laravel Blade views.",
"keywords": [
"Laravel",
"Boxicons",
"Blade UI Kit"
],
"homepage": "https://github.com/mallardduck/blade-boxicons",
"license": "MIT",
"authors": [
{
"name": "Dan Pock",
"homepage": "https://danpock.me",
"role": "Maintainer"
},
{
"name": "João Oliveira",
"email": "[email protected]",
"homepage": "https://joliveira.pt",
"role": "Original Developer"
}
],
"require": {
"php": "^7.4 || ^8.0",
"blade-ui-kit/blade-icons": "^1.5"
},
"replace": {
"jfvoliveira/blade-boxicons": "1.1.2"
},
"require-dev": {
"ext-dom": "*",
"orchestra/testbench": "^6.0 || ^7.0 || ^8.0",
"phpunit/phpunit": "^8.5.14 || ^9.0",
"spatie/phpunit-snapshot-assertions": "^4.2"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"MallardDuck\\BladeBoxicons\\BladeBoxiconsServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"MallardDuck\\BladeBoxicons\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MallardDuck\\BladeBoxicons\\Tests\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"generate": "npm install && php ./vendor/bin/blade-icons-generate",
"test": "vendor/bin/phpunit"
}
}