-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathcomposer.json
33 lines (33 loc) · 877 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
{
"name": "Trsteel/ckeditor-bundle",
"type": "symfony-bundle",
"description": "Symfony2 bundle for easy integration of the CKEditor WYSIWYG",
"keywords": ["ckeditor", "wysiwyg", "editor"],
"license": "MIT",
"authors": [
{
"name": "Trent Steel",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.0",
"symfony/framework-bundle": "2.*,<2.7",
"symfony/form": ">=2.1,<2.7",
"twig/twig": ">=1.1,<2.0",
"ezyang/htmlpurifier": "~4.0"
},
"require-dev": {
"symfony/twig-bundle": "2.*,<2.7",
"symfony/yaml": "~2.0"
},
"autoload": {
"psr-0": { "Trsteel\\CkeditorBundle": "" }
},
"target-dir": "Trsteel/CkeditorBundle",
"extra": {
"branch-alias": {
"dev-master": "1.6.x-dev"
}
}
}