-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 904 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 904 Bytes
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
{
"name": "json-form/json-editor-field",
"description": "This package provides a custom form field for Laravel that allows users to edit JSON in an easy and intuitive manner. It includes real-time validation and a clean user interface that ensures the JSON entered is valid before submission. Ideal for applications that require direct manipulation of JSON structures by end-users.",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"JsonForm\\JsonEditorField\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"JsonForm\\JsonEditorField\\JsonEditorFieldServiceProvider"
]
}
},
"authors": [
{
"name": "Jhon Vasquez"
}
],
"minimum-stability": "dev",
"require": {
"illuminate/support": ">=8.0"
},
"scripts": {}
}