dev-master
9999999-deva Symfony/AngularJS implementation of the TodoMVC client
MIT
The Requires
- php >=5.3.2
- symfony/assetic-bundle ~2.3
- symfony/framework-bundle ~2.6
- twig/extensions ~1.0
- sensio/framework-extra-bundle ~3.0
a Symfony/AngularJS implementation of the TodoMVC client
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)
This bundle requires Symfony 2.1+., (*2)
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(), ); }
``` yaml, (*5)
fancyguy_todomvc_client: resource: "@FancyGuyTodoMVCClientBundle/Controller/" type: annotation prefix: /client ```, (*6)
a Symfony/AngularJS implementation of the TodoMVC client
MIT