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