Download the PHP package kalaxia/scrumban-bundle without Composer
On this page you can find all versions of the php package kalaxia/scrumban-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download kalaxia/scrumban-bundle
More information about kalaxia/scrumban-bundle
Files in kalaxia/scrumban-bundle
Package scrumban-bundle
Short Description Symfony bundle to wrap your project sprints data from external boards
License MIT
Informations about the package scrumban-bundle
Scrumban Bundle
This Symfony bundle imports your Scrum project data into your application.
You can retrieve your epics and your user stories from Trello boards (soon Github, Gitlab, and other boards as well !) and then use it as you like !
For example, you can display on your website the roadmap of your project, or your current sprint work.
Installation
You can use Composer to install the project:
Configuration
After enabling the bundle, you can configure it with the following YAML lines:
Columns are mapped to associate their cards to a precise story type and status.
- The
name
field is the slug of your board column. - The
type
for now can only be user_story. Later, epics, technical stories, bugs and feedbacks will be configurable - The
status
can be one of the pre-configured statuses. See theStatuses
section below.
This bundle comes with a default mapping, which you can rather extend or override.
The default mapping is:
Synchronize with your board
You can use the following command with the configured board name to import your user stories:
It will update the existing user stories in your database, and create the others.
Sprints
This bundle allows you to create your sprints, with data such as begin and end dates, demonstration URL, and later more will certainly be added.
You can use the bundle command
Or directly implement the manager in your code:
Sprints will conflict if they have dates in common. An exception will be thrown in this case.
When you synchronize your board, the cards in columns associated to certain statuses will be associated to the current sprint if you have created sprints.
The default statuses are:
- todo
- in_progress
- review
- to_release
For now, this is not overridable, but it will be in the future.
Contributions
Do not hesitate to open issues if you have any questions, feedbacks, ideas, or if you encounter some bugs with the bundle.
It is rather new for the moment so it's obviously not perfect, and contributions are very welcome :-) !
Unleash the might of open-source community :D !