forked from artur-gajewski/ContentEditable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 843 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
{
"name": "joacub/content-editable",
"description": "This module provides a way to make any HTML tag's inner content editable in TEXTAREA editor.",
"type": "module",
"keywords": [
"zf2",
"content",
"edit"
],
"homepage": "https://github.com/artur-gajewski/ContentEditable",
"authors": [
{
"name": "Artur Gajewski",
"email": "[email protected]",
"homepage": "https://github.com/artur-gajewski"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.3.3",
"zendframework/zendframework": ">=2.0.0",
"rwoverdijk/assetmanager": "dev-master"
},
"autoload": {
"psr-0": {
"ContentEditable": "src/"
},
"classmap": [
"./Module.php"
]
}
}