-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.43 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.43 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
{
"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": {
"livewire/livewire": "^3.6 || ^4.0",
"orchestra/testbench": "^10.0",
"pestphp/pest": "^3.0"
},
"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
}
}
}