Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[POC] Try grapesjs #401

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@
/jackrabbit/
/jackrabbit-standalone-*.jar
/vagrant/.vagrant
/app/app.sqlite
1 change: 1 addition & 0 deletions app/AppKernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ public function registerBundles()
new Symfony\Cmf\Bundle\ResourceBundle\CmfResourceBundle(),
new Symfony\Cmf\Bundle\ResourceRestBundle\CmfResourceRestBundle(),
new Symfony\Cmf\Bundle\SonataPhpcrAdminIntegrationBundle\CmfSonataPhpcrAdminIntegrationBundle(),
new \Symfony\Cmf\Bundle\GrapesjsBundle\CmfGrapesjsBundle(),

// language switcher
new Lunetics\LocaleBundle\LuneticsLocaleBundle(),
Expand Down
Binary file added app/app.sqlite
Binary file not shown.
1 change: 1 addition & 0 deletions app/config/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ twig:
exception_controller: 'FOS\RestBundle\Controller\ExceptionController::showAction'
form_themes:
- '@CmfTreeBrowser/Form/fields.html.twig'
- '@CmfGrapesjs/Form/fields.html.twig'

# Assetic Configuration
assetic:
Expand Down
22 changes: 15 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"psr-4": { "Tests\\": "tests/" }
},
"require": {
"php": "^7.1",
"symfony/symfony": "^3.3",
"php": "^5.6|^7.0",
"symfony/symfony": "^3.4",
"symfony/assetic-bundle": "^2.8",
"symfony/swiftmailer-bundle": "^2.3.10",
"symfony/monolog-bundle": "^3.0.2",
Expand All @@ -31,7 +31,7 @@
"symfony-cmf/seo-bundle": "^2.0",
"symfony-cmf/routing": "^2.0",
"symfony-cmf/routing-auto-bundle": "^2.0",
"symfony-cmf/sonata-phpcr-admin-integration-bundle": "^1.0",
"symfony-cmf/sonata-phpcr-admin-integration-bundle": "dev-trygrapes",

"jackalope/jackalope-doctrine-dbal": "1.2.*",
"jackalope/jackalope-jackrabbit": "1.2.*",
Expand All @@ -42,14 +42,20 @@

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

"jms/serializer-bundle": "^1.1",
"friendsofsymfony/rest-bundle": "~1.7",
"eko/feedbundle": "^1.2.7",
"lunetics/locale-bundle": "^2.5",
"burgov/key-value-form-bundle": "^1.4",
"egeloen/ckeditor-bundle": "^4.0"
"egeloen/ckeditor-bundle": "^4.0",
"sonata-project/core-bundle": "^3.6",
"sonata-project/admin-bundle": "^3.30",
"sonata-project/block-bundle": "^3.9",
"sonata-project/doctrine-phpcr-admin-bundle": "^2.1",
"symfony/polyfill-php70": "^1.6",
"twig/twig": "^1.35",
"symfony-cmf/grapesjs-bundle": "^1.0@dev"
},
"require-dev": {
"sensio/generator-bundle": "^3.0",
Expand Down Expand Up @@ -92,6 +98,8 @@
}
},
"conflict": {
"sonata-project/cache": "<1.1.1"
}
"sonata-project/cache": "<1.1.1"
},
"minimum-stability": "dev",
"prefer-stable": true
}
Loading