-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (80 loc) · 2.25 KB
/
Copy pathcomposer.json
File metadata and controls
80 lines (80 loc) · 2.25 KB
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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "pushery/wirekit",
"description": "A free, open-source UI component library for Laravel Livewire — styled with Tailwind CSS v4 and powered by Alpine.js.",
"keywords": [
"laravel",
"livewire",
"blade",
"components",
"tailwindcss",
"alpinejs",
"tall-stack",
"ui-kit",
"wirekit"
],
"homepage": "https://github.com/pushery/wirekit",
"license": "MIT",
"authors": [
{
"name": "pushery",
"homepage": "https://github.com/pushery"
}
],
"require": {
"php": "^8.4",
"illuminate/contracts": "^12.0 || ^13.0",
"illuminate/support": "^12.0 || ^13.0",
"illuminate/view": "^12.0 || ^13.0",
"livewire/livewire": "^4.0"
},
"require-dev": {
"bacon/bacon-qr-code": "^3.1",
"blade-ui-kit/blade-heroicons": "^2.7",
"codeat3/blade-phosphor-icons": "^2.4",
"larastan/larastan": "3.10.0",
"laravel/pint": "^1.0",
"mallardduck/blade-lucide-icons": "^2.0",
"phpstan/phpstan": "2.2.11",
"orchestra/testbench": "^10.0 || ^11.1",
"pestphp/pest": "^5.0",
"pestphp/pest-plugin-laravel": "^5.0",
"secondnetwork/blade-tabler-icons": "^3.46",
"symfony/yaml": "^7.4 || ^8.0"
},
"suggest": {
"blade-ui-kit/blade-icons": "Required for the icon system (~1.7). Install alongside your preferred icon set.",
"blade-ui-kit/blade-heroicons": "Heroicons preset — ~316 icons, Mini/Outline/Solid styles",
"mallardduck/blade-lucide-icons": "Lucide preset — ~1,500 outline icons",
"codeat3/blade-phosphor-icons": "Phosphor preset — ~1,500 icons in 6 weight styles",
"secondnetwork/blade-tabler-icons": "Tabler preset — ~7,200 outline/filled icons",
"bacon/bacon-qr-code": "Required for the qr-code component — server-side QR code SVG generation"
},
"autoload": {
"psr-4": {
"Pushery\\WireKit\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pushery\\WireKit\\Tests\\": "tests/"
},
"files": [
"tests/helpers.php"
]
},
"extra": {
"laravel": {
"providers": [
"Pushery\\WireKit\\WireKitServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}