2017 © Pedro Peláez
 

symfony-bundle article-bundle

Simple CRUD Article Bundle.

image

pvessel/article-bundle

Simple CRUD Article Bundle.

  • Thursday, October 9, 2014
  • by pvessel
  • Repository
  • 1 Watchers
  • 0 Stars
  • 5 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

PvesselArrayBundle

This bundle allow to create and view Articles., (*1)

Installation

Step 1: Download PvesselArticleBundle using composer

Tell composer to require PvesselArticleBundle by running the command:, (*2)

``` bash $ php composer.phar require "pvessel/article-bundle:dev-master", (*3)


Composer will install the bundle to your project's `vendor/pvessel/article-bundle` directory. #### Step 2: Enable the bundle Enable the bundle in the kernel: ``` php <?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new Pvessel\ArticleBundle\PvesselArticleBundle(), ); }

Step 3: Add to router

Add to your routing.yml, (*4)

``` yml article: resource: "@PvesselArticleBundle/Controller" type: annotation, (*5)


### Step 4: Update database In order to work with this bundle you must update your database (and create one if you don't use it yet). ``` bash $ app/console doctrine:schema:update --dump-sql

Step 5: Enjoy!

Run your web server and browser and try it! ( use /article path to start), (*6)

The Versions

09/10 2014

dev-master

9999999-dev https://github.com/pvessel/article-bundle

Simple CRUD Article Bundle.

  Sources   Download

MIT

The Requires

 

The Development Requires

json xml html converter