rgies / awt-bundle
敏捷工作组工具
dev-master / dev-master
2014-06-23 17:06 UTC
Requires
- php: >=5.3.3
- rgies/symfony: dev-master
This package is auto-updated.
Last update: 2020-06-14 06:46:24 UTC
README
这是一个用于处理敏捷团队流程的敏捷机构软件。
安装
将以下代码添加到您的 composer.json 文件中
"require": {
..
"rgies/awt-bundle": "dev-master"
},
然后运行 Composer 更新命令
$ php composer.phar update rgies/awt-bundle
然后在 app/AppKernel.php 文件中注册该包
public function registerBundles()
{
$bundles = array(
...
new RGies\AwtBundle\AwtBundle(),
...
);
return $bundles;
}
在 app\config\routing.yml 文件中添加所需的路由设置
awt:
resource: "@AwtBundle/Controller/"
type: annotation
prefix: /
在 app\config\config.yml 文件中添加 jira 配置
# Agile Workgroup Tool Configuration
awt:
jira_connector:
protocol: https
url: jira.your_domain.com
login: xxx
password: xxx