-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 803 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 803 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": "solution/code-mirror-bundle",
"description": "This Bundle integrates CodeMirror editor into a Symfony2 project.",
"keywords": ["codemirror", "php editor", "html editor", "editor"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Aleksandr Moroz",
"homepage": "http://comingsoon.com",
"email": "netstroix@gmail.com"
}
],
"require": {
"php": ">=5.3.2",
"symfony/symfony": "~2.2",
"twig/twig": "*",
"symfony/assetic-bundle": "*",
"zendframework/zend-json": "2.0.*"
},
"minimum-stability": "dev",
"autoload": {
"psr-0": {
"Solution\\CodeMirrorBundle": ""
}
},
"target-dir": "Solution/CodeMirrorBundle"
}