-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.4 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.4 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
{
"name": "reactic/base-ui",
"description": "A headless component library for Symfony and Twig, built on Base UI principles. This library provides unstyled, accessible UI components that give you complete control over styling while handling complex functionality, state management, and accessibility out of the box. Perfect for building custom design systems without fighting against opinionated styles.",
"type": "symfony-bundle",
"license": "MIT",
"autoload": {
"psr-4": {
"Reactic\\BaseUi\\": "src/"
}
},
"authors": [
{
"name": "Nicolas Facciolo",
"email": "nicolas@reactic.io"
}
],
"require": {
"symfony/ux-twig-component": "^2.31",
"symfony/twig-bundle": "^7.4|^8.0",
"symfony/stimulus-bundle": "^2.0"
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": ">=7.0",
"controllers": {
"baseui--accordion": {
"main": "assets/controllers/accordion_controller.js",
"name": "baseui--accordion",
"webpackMode": "eager",
"fetch": "eager",
"enabled": true
}
}
},
"thanks": {
"name": "reactic/base-ui",
"url": "https://github.com/reactic/base-ui"
}
}
}