2017 © Pedro Peláez
 

symfony-bundle node-connection-bundle

phlexible node connection bundle

image

phlexible/node-connection-bundle

phlexible node connection bundle

  • Monday, July 30, 2018
  • by temp
  • Repository
  • 2 Watchers
  • 0 Stars
  • 60 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 22 % Grown

The README.md

PhlexibleNodeConnectionBundle

The PhlexibleNodeConnectionBundle adds support inter-node-connection in phlexible., (*1)

Installation

  1. Download PhlexibleNodeConnectionBundle using composer
  2. Enable the Bundle
  3. Clear the symfony cache

Step 1: Download PhlexibleNodeConnectionBundle using composer

Add PhlexibleNodeConnectionBundle by running the command:, (*2)

``` bash $ php composer.phar require phlexible/node-connection-bundle "~1.0.0", (*3)


Composer will install the bundle to your project's `vendor/phlexible` directory. ### Step 2: Enable the bundle Enable the bundle in the kernel: ``` php <?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new Phlexible\Bundle\NodeConnectionBundle\PhlexibleNodeConnectionBundle(), ); }

Step 3: Update your database schema

Now that the bundle is set up, the last thing you need to do is update your database schema because the node connection bundle includes entities that need to be installed in your database., (*4)

For ORM run the following command., (*5)

``` bash $ php app/console doctrine:schema:update --force, (*6)


### Step 4: Clear the symfony cache If you access your phlexible application with environment prod, clear the cache: ``` bash $ php app/console cache:clear --env=prod

The Versions