2017 © Pedro Peláez
 

library todomvc-client-bundle

a Symfony/AngularJS implementation of the TodoMVC client

image

fancyguy/todomvc-client-bundle

a Symfony/AngularJS implementation of the TodoMVC client

  • Sunday, February 1, 2015
  • by sbuzonas
  • Repository
  • 1 Watchers
  • 0 Stars
  • 3 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Getting Started With FancyGuyTodoMVCClientBundle

This bundle implements an API client interface in the style of TodoMVC to highlight best practices, defined by FancyGuy Technologies, in implementing a web client in PHP., (*1)

Prerequisites

This bundle requires Symfony 2.1+., (*2)

Installation

  1. Download FancyGuyTodoMVCClientBundle using composer
  2. Enable the bundle
  3. Update the application routes

Step 1: Download FancyGuyTodoMVCClientBundle using composer

Add FancyGuyTodoMVCClientBundle by running the command:, (*3)

``` bash $ composer require fancyguy/todomvc-client-bundle "1.0.x-dev", (*4)


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

Step 3: Update the application routes

``` yaml, (*5)

app/config/routing.yml

fancyguy_todomvc_client: resource: "@FancyGuyTodoMVCClientBundle/Controller/" type: annotation prefix: /client ```, (*6)

The Versions

01/02 2015

dev-master

9999999-dev

a Symfony/AngularJS implementation of the TodoMVC client

  Sources   Download

MIT

The Requires