-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.87 KB
/
Copy pathcomposer.json
File metadata and controls
62 lines (62 loc) · 1.87 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
{
"name": "capell-app/layout-builder",
"description": "The visual layout and widget composition engine for Capell CMS — content-first and drag-drop editing, responsive containers, reusable widgets, and safe public rendering.",
"keywords": [
"capell",
"layout-builder",
"cms",
"filament",
"livewire"
],
"homepage": "https://github.com/capell-app/layout-builder",
"license": "proprietary",
"require": {
"php": "^8.4",
"capell-app/admin": "^1.0.10",
"capell-app/block-library": "^1.0",
"capell-app/core": "^1.0.21",
"capell-app/frontend": "^1.0.31"
},
"suggest": {
"capell-app/content-sections": "Allows reusable content sections in layouts.",
"capell-app/frontend-authoring": "Adds authenticated in-page layout authoring.",
"capell-app/publishing-studio": "Connects layout snapshots to publishing workflows.",
"capell-app/structured-content-library": "Allows structured content records in layouts."
},
"autoload": {
"psr-4": {
"Capell\\LayoutBuilder\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Capell\\LayoutBuilder\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Capell\\LayoutBuilder\\LayoutBuilderServiceProvider"
]
},
"branch-alias": {
"dev-main": "1.x-dev"
}
},
"config": {
"sort-packages": true
},
"prefer-stable": true,
"type": "library",
"authors": [
{
"name": "Capell Team",
"email": "team@capell.app",
"role": "Developer"
}
],
"support": {
"source": "https://github.com/capell-app/capell-packages",
"docs": "https://docs.capell.app/packages/layout-builder"
}
}