-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
37 lines (37 loc) · 926 Bytes
/
composer.json
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": "twokings/bolt-extension-who-is-editing",
"description": "This extension shows you who is editing the content you might want to simultaneously edit",
"type": "bolt-extension",
"keywords": [
"record",
"edit",
"editing",
"editor",
"content",
"simultaneously"
],
"require": {
"bolt/bolt": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^4.7"
},
"license": "MIT",
"authors": [
{
"name": "Néstor de Dios Fernández",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Bolt\\Extension\\TwoKings\\WhoIsEditing\\": "src"
}
},
"extra": {
"bolt-assets": "web",
"bolt-class": "Bolt\\Extension\\TwoKings\\WhoIsEditing\\WhoIsEditingExtension"
}
}