-
Notifications
You must be signed in to change notification settings - Fork 36
/
composer.json
executable file
·55 lines (55 loc) · 1.86 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "redkite-labs/redkite-cms",
"description": "RedKiteCms is an Open Source Content Management System Application, built on top of Symfony2 components and TwitterBootstrap frameworks, providing an easy an intuitive user-interface, to improve the website's content management experience",
"keywords": ["redkite", "redkite labs", "redkite cms", "cms"],
"homepage": "http://redkite-labs.com",
"type": "library",
"license": "GPL-2.0",
"authors": [
{
"name": "RedKite Labs",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4",
"silex/silex": "1.2.*",
"twig/twig": ">=1.8,<2.0-dev",
"symfony/security": "2.6.8",
"jms/serializer": "*",
"symfony/form": "2.6.8",
"symfony/validator": "2.6.8",
"symfony/config": "2.6.8",
"symfony/translation": "2.6.8",
"symfony/locale": "2.6.8",
"symfony/security-csrf": "2.6.8",
"symfony/twig-bridge": "2.6.8",
"symfony/yaml": "2.6.8",
"symfony/finder": "2.6.8",
"symfony/filesystem": "2.6.8",
"symfony/browser-kit": "2.6.8",
"symfony/css-selector": "2.6.8",
"symfony/monolog-bridge": "2.6.8",
"symfony/options-resolver": "2.6.8",
"symfony/process": "2.6.8",
"kriswallsmith/assetic": "~1.2",
"redkite-labs/redkitecms-framework": "@dev",
"redkite-labs/redkitecms-plugins": "@dev"
},
"require-dev": {
"behat/behat": "~3.0",
"behat/mink": "~1.6",
"behat/mink-extension": "*",
"behat/mink-selenium2-driver": "~1.2",
"phpunit/phpunit": "*"
},
"config": {
"bin-dir": "bin/"
},
"autoload": {
"psr-0": {
"RedKiteCms": ["app/plugins", "tests/functional", "src"],
"Controller": "controllers"
}
}
}