资源说明:Simple task management
TodoBundle ========== **Todo list** : Simple task management **Warning** > This has NEVER been tested ! This bundle IS NOT yet ready to use. Please use [TodoBundle-sandbox] (https://github.com/green-frog/TodoBundle-sandbox) wich is ready to use Requirements ------------ - [FOSUserBundle] (https://github.com/FriendsOfSymfony/FOSUserBundle) - Cause we'll do it later : - You can pass trougth Step 4 : Configure User class - And step 6 Configure in ``app/config.yml`` - [FOSJsRoutingBundle] (https://github.com/FriendsOfSymfony/FOSJsRoutingBundle) - Optional : [Doctrine fixtures](https://github.com/symfony/DoctrineFixturesBundle) Installation ------------ After installing requirements, just follow thoose steps 1. Download GreenFrogTodoBundle (by deps or using submodule) 2. Configure autoload and enable bundle 3. Extends FOSUser User class and ovverride global FOSUSerBundle template 4. Configure GreenFrogTodoBundle 5. Update database 6. Publish assets 7. Optional : load fixtures ### 1. Download GreenFrogTodoBundle Using the standard Symfony 2 method with vendors, add the following lines in your `deps` file: ``` ini [GreenFrogTodoBundle] git=git://github.com/green-frog/TodoBundle.git target=bundles/GreenFrog/Bundle/TodoBundle ``` And now, download it: ``` bash $ php bin/vendors install ``` ### 2. Configure Autoloader and enable module Autload ``` php registerNamespaces(array( // ... 'GreenFrog' => __DIR__.'/../vendor/bundles', )); ``` Then enable ``` php
本源码包内暂不包含可直接显示的源代码文件,请下载源码包。