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

v0.3.0 2016-08-06 23:58 UTC

This package is not auto-updated.

Last update: 2024-05-04 18:03:44 UTC


README

Latest Stable Version Total Downloads Build Status Code Coverage Scrutinizer Code Quality License

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 !

Documentation