-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
47 lines (47 loc) · 1.06 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
{
"name": "sallycms/core",
"description": "Core Framework for SallyCMS",
"type": "sallycms-app",
"keywords": [
"cms",
"php",
"mysql",
"framework",
"sallycms"
],
"authors": [
{
"name": "webvariants GmbH & Co. KG",
"homepage": "http://www.webvariants.de/"
}
],
"version": "0.10.x-dev",
"homepage": "http://www.sallycms.de/",
"license": "MIT",
"autoload": {
"psr-0": {
"sly_": "lib/"
},
"files": [
"lib/functions.php"
]
},
"require": {
"php": ">=5.3.3",
"symfony/yaml": "~2.2",
"webvariants/babelcache": "~2.0",
"sallycms/composer-installer": "~1.1",
"knplabs/gaufrette": "0.2.*@dev",
"pimple/pimple": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"phpunit/dbunit": "1.2.*",
"doctrine/dbal": "~2.3.2"
},
"extra": {
"branch-alias": {
"dev-default": "0.10.x-dev"
}
}
}