forked from joshcirre/tweakflux
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.01 KB
/
Copy pathcomposer.json
File metadata and controls
47 lines (47 loc) · 1.01 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
{
"name": "joshcirre/tweakflux",
"type": "library",
"description": "Deep theming for Flux UI. Override Tailwind v4 CSS custom properties to transform every Flux component.",
"keywords": [
"flux",
"theming",
"tailwind",
"livewire",
"cli"
],
"license": "MIT",
"authors": [
{
"name": "Josh Cirre",
"homepage": "https://github.com/joshcirre"
}
],
"require": {
"php": "^8.2",
"laravel/prompts": "^0.3"
},
"require-dev": {
"pestphp/pest": "^3.0 || ^4.0"
},
"autoload": {
"psr-4": {
"TweakFlux\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TweakFlux\\Tests\\": "tests/"
}
},
"bin": [
"bin/tweakflux"
],
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}