-
Notifications
You must be signed in to change notification settings - Fork 16
/
configExample.php
31 lines (24 loc) · 968 Bytes
/
configExample.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
/**
* This is an annotated example of a configuration file with default settings (or notes what they are).
*
* Copy to `config.php` and customize as needed.
*/
declare(strict_types=1);
return [
// Enable to put the application into the debug mode with extended error messages.
// 'debug' => false,
// Customize path to the directory containing release ZIP files.
// 'release.dir' => __DIR__.'/../releases',
//'users' => [
// User login.
// 'composer' => [
// Provide password hash for HTTP authentication. See bin/encodePassword.php helper.
// 'hash' => '$2y$10$3i9/lVd8UOFIJ6PAMFt8gu3/r5g0qeCJvoSlLCsvMTythye19F77a', // foo
// Array of allowed package path matches.
// 'allow' => ['foo'],
// Array of disallowed package path matches.
// 'disallow' => ['bar'],
// ],
// ],
];