-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.69 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
56
57
58
59
60
61
62
63
{
"name": "webforge/cms",
"description": "A cms written in knockoutjs and twitter-bootstrap on top of symfony",
"homepage": "https://www.ps-webforge.com/docker",
"autoload": {
"psr-0": {
"Webforge\\CmsBundle": "src/php/",
"Webforge\\UserBundle": "src/php/",
"Webforge\\Gaufrette": "src/php/",
"Webforge\\Doctrine": "src/php/",
"Webforge\\Symfony": "src/php/",
"Webforge\\Testing": "src/php/"
}
},
"autoload-dev": {
"psr-0": {
"AppBundle": "src/php/"
}
},
"prefer-stable": true,
"require": {
"php": ">=7.2.0",
"knplabs/knp-gaufrette-bundle": "~0.5",
"knplabs/knp-markdown-bundle": "^1.7",
"webforge/utils": "~1.1.0@stable",
"webmozart/json": "^1.1",
"jbroadway/urlify": "^1.0",
"ramsey/uuid": "^3.5",
"nicmart/tree": "^0.2.7",
"lsolesen/pel": "^0.9.6"
},
"require-dev": {
"webforge/testdata-repository": "0.2.2-alpha",
"symfony/phpunit-bridge": "^4.0",
"theofidry/alice-data-fixtures": "^1.0",
"doctrine/data-fixtures": "^1.3",
"mockery/mockery": "~1.1.0"
},
"suggest": {
"mockery/mockery": "to write better expectations in tests",
"sensio/framework-extra-bundle": "soft dep",
"jbouzekri/phumbor-bundle": "soft dep",
"jms/serializer-bundle": "soft dep",
"friendsofsymfony/user-bundle": "soft dep",
"symfony/templating": "soft dep",
"symfony/orm-pack": "soft dep"
},
"license": "MIT",
"authors": [
{
"name": "Philipp Scheit",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "www",
"branch-alias": {
"dev-master": "3.3.x-dev"
}
}
}