developtech / agility-bundle
Bundle implementing agile project management features in your project
Installs: 435
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Open Issues: 62
Type:symfony-bundle
Requires
- php: >=5.5
- sensio/distribution-bundle: ^5.0
- sensio/framework-extra-bundle: ~2.3|~3.0
- sensio/generator-bundle: ~2.3|~3.0
- symfony/debug-bundle: ~2.3|~3.0
- symfony/form: ~2.3|~3.0
- symfony/framework-bundle: ~2.3|~3.0
- symfony/security-bundle: ~2.3|~3.0
- symfony/twig-bundle: ~2.3|~3.0
- symfony/validator: ~2.3|~3.0
- symfony/web-profiler-bundle: ~2.3|~3.0
- symfony/yaml: ~2.3|~3.0
Requires (Dev)
- doctrine/doctrine-bundle: ~1.1
- doctrine/doctrine-fixtures-bundle: ^2.3
- doctrine/orm: ~2.3
- liip/functional-test-bundle: dev-master
- symfony/phpunit-bridge: ~2.7|~3.0
This package is not auto-updated.
Last update: 2024-11-02 20:18:56 UTC
README
Introduction
This Symfony bundle is meant to implement a full project-management tool inside your application.
It contains all the needed features to manage a project, with its user stories, its tasks, its sprints, its feedbacks...
This tool is designed to handle Agile projects. It is meant for scrum masters, product owners and of course developers.
The purpose of this project is to make easier the usage of Agile ways in a project, and to help end-users to receive feedbacks from their final users.
It is designed to handle beta tests, sprints, engagements, costings and whatever part of the Agile way of work.
Install
As any Symfony bundle, you can install this one using composer :
composer require developtech/agility-bundle
Then, just enable the bundle in your AppKernel file.
<?php class AppKernel extends Kernel { public function registerBundles() { $bundles = [ // ... new Developtech\AgilityBundle\DeveloptechAgilityBundle() ]; } }
Some of the bundle entities must be mapped to your user class.
That's why you must set your user class as a bundle configuration.
Let's begin with some configuration :
# app/config/config.yml developtech_agility: user_class: AppBundle\Entity\User
Now you're done, you can use it the way you want !