[ * 'path' => 'directory storing the local files', * 'writable' => [ * // list of directories that should be set writable * ], * ], * ]; * ``` */ return [ 'Development' => [ 'path' => 'dev', 'writable' => [ // handled by composer.json already ], 'executable' => [ 'yii', ], ], 'Production' => [ 'path' => 'prod', 'writable' => [ // handled by composer.json already ], 'executable' => [ 'yii', ], ], ];