17 lines
506 B
Plaintext
17 lines
506 B
Plaintext
|
|
<?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' => [
|
||
|
|
'jira.user' => '',
|
||
|
|
'jira.password' => '',
|
||
|
|
'url.jiraKanbanBoard' => 'https://jirapducc.mo.ca.am.ericsson.se/rest/api/2/search?jql=filter=14223&maxResults=1000&fields=assignee,summary,issuetype,status,customfield_10010,',
|
||
|
|
],
|
||
|
|
];
|