-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.56 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": "bugo/moonshine-heroicons-field",
"description": "Heroicons selection field for MoonShine",
"keywords": [
"moonshine",
"heroicons"
],
"type": "library",
"homepage": "https://github.com/dragomano/moonshine-heroicons-field",
"license": "MIT",
"authors": [
{
"name": "Bugo",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"blade-ui-kit/blade-heroicons": "^2.5"
},
"require-dev": {
"moonshine/moonshine": "^3.0",
"orchestra/testbench": "^9.0",
"pestphp/pest": "^3.5",
"pestphp/pest-plugin-laravel": "^3.0",
"rector/rector": "^2.0"
},
"autoload": {
"psr-4": {
"Bugo\\MoonShine\\Heroicons\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"MoonShine\\": "vendor/moonshine/moonshine/"
}
},
"scripts": {
"check": "vendor/bin/rector process --dry-run --clear-cache",
"tests": "vendor/bin/pest --colors=always",
"tests-coverage": "vendor/bin/pest --colors=always --coverage --min=90",
"tests-coverage-clover": "vendor/bin/pest --colors=always --min=90 --coverage-clover coverage.xml",
"tests-coverage-html": "vendor/bin/pest --colors=always --min=90 --coverage-html coverage"
},
"extra": {
"laravel": {
"providers": [
"Bugo\\MoonShine\\Heroicons\\Providers\\IconServiceProvider"
]
}
},
"conflict": {
"moonshine/moonshine": "<3.0"
},
"minimum-stability": "alpha",
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}