index.php 761 Bytes
Newer Older
1 2 3 4 5 6 7 8
<?php
/**
 * The manifest of files that are local to specific environment.
 * This file returns a list of environments that the application
 * may be installed under. The returned data must be in the following
 * format:
 *
 * ```php
Alexander Makarov committed
9 10
 * return [
 *     'environment name' => [
11
 *         'path' => 'directory storing the local files',
Alexander Makarov committed
12
 *         'writable' => [
13
 *             // list of directories that should be set writable
Alexander Makarov committed
14 15 16
 *         ],
 *     ],
 * ];
17 18
 * ```
 */
19 20
return [
	'Development' => [
21
		'path' => 'dev',
22
		'writable' => [
23
			// handled by composer.json already
24 25
		],
		'executable' => [
26
			'yii',
27 28 29
		],
	],
	'Production' => [
30
		'path' => 'prod',
31
		'writable' => [
32
			// handled by composer.json already
33 34
		],
		'executable' => [
35
			'yii',
36 37 38
		],
	],
];