taurus-api/config/autoload/local.php.dist

36 lines
1.0 KiB
Plaintext
Raw Normal View History

2017-07-31 15:50:48 +02:00
<?php
/**
* Local configuration.
*
* Copy this file to `local.php` and change its settings as required.
* `local.php` is ignored by git and safe to use for local and sensitive data like usernames and passwords.
*/
return [
'app.config' => [
2017-07-31 16:10:31 +02:00
'jira.user' => '...',
'jira.password' => '...',
'url.jiraKanbanBoard' => [
'baseUrl' => 'https://jirapducc.mo.ca.am.ericsson.se/rest/api/2/search?jql=filter=%s&maxResults=1000&fields=%s',
'filterId' => 14229,
'fields' => [
'assignee',
'summary',
'issuetype',
'status',
'customfield_10010',
'customfield_11226',
'customfield_10840',
'customfield_11225',
'customfield_10844',
'customfield_10847',
'customfield_10849',
'customfield_10850',
'customfield_10904',
'customfield_11692',
],
],
2017-07-31 15:50:48 +02:00
],
];