-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 777 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 777 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
29
30
31
32
33
34
35
36
37
{
"name": "ws/array-field-type-extension",
"description": "Add an array field type for Bolt.",
"type": "bolt-extension",
"license": "MIT",
"authors": [
{
"name": "Benjamin Georgeault",
"email": "github@wedgesama.fr"
}
],
"keywords": [
"field",
"array",
"backend",
"collection"
],
"require": {
"bolt/bolt": ">=2.0.0,<3.0.0"
},
"autoload": {
"files": [
"init.php"
],
"psr-4": {
"Bolt\\Extension\\WS\\ArrayFieldExtension\\": "src"
}
},
"extra": {
"bolt-screenshots": [
"preview.png"
],
"branch-alias": {
"dev-master": "1.0.*"
}
}
}