riverwaysoft / riverway-cms-bundle
Installs: 460
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:project
Requires
- php: >=5.5.9
- beyerz/open-graph-protocol-bundle: ^2.0
- doctrine/annotations: ^1.3
- doctrine/dbal: 2.6.3
- doctrine/doctrine-bundle: ^1.6
- doctrine/doctrine-fixtures-bundle: ^2.3
- doctrine/doctrine-migrations-bundle: ^1.2
- doctrine/orm: ^2.5
- eightpoints/guzzle-bundle: ^6.0
- friendsofsymfony/jsrouting-bundle: ^1.6
- friendsofsymfony/rest-bundle: ^2.2
- friendsofsymfony/user-bundle: ^2.0
- guzzlehttp/guzzle: ^6.3
- incenteev/composer-parameter-handler: ^2.0
- jms/serializer-bundle: ^2.1
- knplabs/knp-menu-bundle: ^2.1
- knplabs/knp-paginator-bundle: ^2.6
- liip/imagine-bundle: ^1.8
- myclabs/php-enum: ^1.5
- riverwaysoft/grid-bundle: ^0.3
- sainsburys/guzzle-oauth2-plugin: ^3.0
- sensio/distribution-bundle: ^5.0.19
- sensio/framework-extra-bundle: ^3.0.2
- sentry/sentry-symfony: ^0.8.6
- swiftmailer/swiftmailer: ^6.0
- symfony/monolog-bundle: ^3.1.0
- symfony/polyfill-apcu: ^1.0
- symfony/swiftmailer-bundle: ^3.0
- symfony/symfony: ^3.3
- tetranz/select2entity-bundle: 2.*
- twig/extensions: ^1.5
- twig/twig: ^1.0||^2.0
- vich/uploader-bundle: ^1.6
- white-october/pagerfanta-bundle: ^1.0
Requires (Dev)
- behat/mink: ^1.7
- behat/mink-browserkit-driver: ^1.3
- behat/mink-extension: ^2.2
- behat/symfony2-extension: ^2.1
- behatch/contexts: ^2.7
- phpunit/phpunit: ^6.3
- sensio/generator-bundle: ^3.0
- symfony/phpunit-bridge: ^3.0
This package is not auto-updated.
Last update: 2021-08-23 09:29:30 UTC
README
Installation
Step 1: Download the Bundle
Exclude app dir:
"autoload": {
//...
"exclude-from-classmap": [
"vendor/riverwaysoft/riverway-cms-bundle/app"
]
},
Install:
composer require --prefer-dist riverwaysoft/riverway-cms-bundle
Step 2: Enable the Bundle
Then, enable the bundle by adding it to the list of registered bundles
in the app/AppKernel.php
file of your project:
<?php // app/AppKernel.php class AppKernel extends \Riverway\Cms\CoreBundle\Application\Kernel { public function registerBundles() { $bundles = [ new AppBundle\AppBundle(), // ... ]; return array_merge($bundles, parent::registerBundles()); } public function getRootDir() { return __DIR__; } }
Step 3: Prepare Database
Create database
bin/console doctrine:database:create
Apply CMS-specific migrations:
bin/console riverway:migration:migrate
Step 4: Install assets
yarn install
yarn dev-server