Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b61ea06

Browse files
committedJan 28, 2018
after conflict
1 parent d014fa8 commit b61ea06

File tree

4 files changed

+195
-110
lines changed

4 files changed

+195
-110
lines changed
 

‎app/AppKernel.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ public function registerBundles()
4141
new Symfony\Cmf\Bundle\ResourceBundle\CmfResourceBundle(),
4242
new Symfony\Cmf\Bundle\ResourceRestBundle\CmfResourceRestBundle(),
4343
new Symfony\Cmf\Bundle\SonataPhpcrAdminIntegrationBundle\CmfSonataPhpcrAdminIntegrationBundle(),
44+
new \Symfony\Cmf\Bundle\GrapesjsBundle\CmfGrapesjsBundle(),
4445

4546
// language switcher
4647
new Lunetics\LocaleBundle\LuneticsLocaleBundle(),

‎app/config/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ twig:
2525
exception_controller: 'FOS\RestBundle\Controller\ExceptionController::showAction'
2626
form_themes:
2727
- '@CmfTreeBrowser/Form/fields.html.twig'
28+
- '@CmfGrapesjs/Form/fields.html.twig'
2829

2930
# Assetic Configuration
3031
assetic:

‎composer.json

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,15 @@
1616
"autoload-dev": {
1717
"psr-4": { "Tests\\": "tests/" }
1818
},
19+
"repositories": [
20+
{
21+
"type": "vcs",
22+
"url": "https://github.com/symfony-cmf/grapesjs-bundle.git"
23+
}
24+
],
1925
"require": {
20-
"php": "^7.1",
21-
"symfony/symfony": "^3.3",
26+
"php": "^5.6|^7.0",
27+
"symfony/symfony": "^3.4",
2228
"symfony/assetic-bundle": "^2.8",
2329
"symfony/swiftmailer-bundle": "^2.3.10",
2430
"symfony/monolog-bundle": "^3.0.2",
@@ -31,7 +37,7 @@
3137
"symfony-cmf/seo-bundle": "^2.0",
3238
"symfony-cmf/routing": "^2.0",
3339
"symfony-cmf/routing-auto-bundle": "^2.0",
34-
"symfony-cmf/sonata-phpcr-admin-integration-bundle": "^1.0",
40+
"symfony-cmf/sonata-phpcr-admin-integration-bundle": "dev-trygrapes",
3541

3642
"jackalope/jackalope-doctrine-dbal": "1.2.*",
3743
"jackalope/jackalope-jackrabbit": "1.2.*",
@@ -42,14 +48,20 @@
4248

4349
"sonata-project/cache-bundle": "^2.4",
4450
"sonata-project/translation-bundle": "2.1.0",
45-
"sonata-project/doctrine-phpcr-admin-bundle": "^2.0",
4651

4752
"jms/serializer-bundle": "^1.1",
4853
"friendsofsymfony/rest-bundle": "~1.7",
4954
"eko/feedbundle": "^1.2.7",
5055
"lunetics/locale-bundle": "^2.5",
5156
"burgov/key-value-form-bundle": "^1.4",
52-
"egeloen/ckeditor-bundle": "^4.0"
57+
"egeloen/ckeditor-bundle": "^4.0",
58+
"sonata-project/core-bundle": "^3.6",
59+
"sonata-project/admin-bundle": "^3.30",
60+
"sonata-project/block-bundle": "^3.9",
61+
"sonata-project/doctrine-phpcr-admin-bundle": "^2.1",
62+
"symfony/polyfill-php70": "^1.6",
63+
"twig/twig": "^1.35",
64+
"symfony-cmf/grapesjs-bundle": "^1.0"
5365
},
5466
"require-dev": {
5567
"sensio/generator-bundle": "^3.0",
@@ -92,6 +104,8 @@
92104
}
93105
},
94106
"conflict": {
95-
"sonata-project/cache": "<1.1.1"
96-
}
107+
"sonata-project/cache": "<1.1.1"
108+
},
109+
"minimum-stability": "dev",
110+
"prefer-stable": true
97111
}
There was a problem loading the remainder of the diff.

0 commit comments

Comments
 (0)
Please sign in to comment.