Download the PHP package sokil/task-tracker-bundle without Composer
On this page you can find all versions of the php package sokil/task-tracker-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package task-tracker-bundle
TaskStockBundle
Task tracker bundle
- Installation
- Configuration
- Basic bundle configuration
- Configuring SPA
- Configuring file storage
- Configuring task states
Installation
Add dependency to composer:
Configuration
This bundle depends from other bundles, which also require configuration. If you yet not using it, configure them:
Basic bundle configuration
1) Add bundle to AppKernel:
2) Define required parameters in ./app/config/parameters.yml.dist
:
3) Add roles to role hierarchy in file ./app/config/security.yml
:
4) Register routing in ./app/console/routing.yml
:
5) Bundle uses assetic so you need to register it in assetic config and do some configuration:
Paramater varailbes
passes some valiables to assets, tham will be used to build path to assets.
Configuring SPA
This bundle uses FrontendBundle for building frontend, so configure SPA, and add some dependencies to it:
Configuring file storage
This bundle uses FileStorageBundle to handle file uploads.
You need to configure some filesystem to handle uploads, for example task_stock.attachments
.
Add to your ./app/config/config.yml
:
Then add this filesystem to bundle's config at ./app/config/config.yml
:
Configuring task states
Task belongs to some category: Bug
, Enhancement
, Feature
, Design
, etc. Different categories of tasks may have different state flows. Bug may have states New
, In Progres
, Test
, Resolved
, and Design
may have states New
, Prototyping
, Drawing
, Markup
, Resolved
. This groups of states called Schema
. Task with category Design
may be related to Drawing schema
, and tasks Bug
, Feature
may be relared to Development
schema.
Add schema configuration to your ./app/config/config.yaml
:
All versions of task-tracker-bundle with dependencies
sokil/file-storage-bundle Version ^0.1.7
sokil/user-bundle Version ^0.2.19
sokil/notification-bundle Version ^0.3.2
sokil/frontend-bundle Version ^0.12.3
sokil/php-diff Version ~0.3
sokil/php-state Version ^0.5.1
sokil/php-upload Version ^0.6.4
sokil/php-symfony-validator-converter Version ^1.0.2