-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.67 KB
/
Copy pathcomposer.json
File metadata and controls
58 lines (58 loc) · 1.67 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
{
"name": "bluestarsystem/aura-ui",
"description": "Vibrant Depth UI component library for Laravel + Livewire + Alpine.js + Tailwind CSS",
"type": "library",
"license": "MIT",
"keywords": ["laravel", "livewire", "ui", "components", "tailwind", "alpine"],
"authors": [
{
"name": "Juri Montico",
"email": "info@bluestarsystem.it",
"homepage": "https://bluestarsystem.it"
}
],
"homepage": "https://aura-ui.com",
"support": {
"issues": "https://github.com/BlueStarSystem/aura-ui/issues",
"source": "https://github.com/BlueStarSystem/aura-ui"
},
"require": {
"php": "^8.3",
"illuminate/support": "^12.0 || ^13.0",
"illuminate/view": "^12.0 || ^13.0"
},
"require-dev": {
"bacon/bacon-qr-code": "^3.0",
"livewire/livewire": "^3.6 || ^4.0",
"orchestra/testbench": "^10.0",
"pestphp/pest": "^3.0"
},
"suggest": {
"bacon/bacon-qr-code": "Required by <x-aura::qr-code> to draw the code; without it the component still renders the value it would have encoded."
},
"bin": ["bin/aura"],
"autoload": {
"psr-4": {
"BlueStarSystem\\AuraUI\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BlueStarSystem\\AuraUI\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"BlueStarSystem\\AuraUI\\AuraUIServiceProvider"
]
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}