## Retrieve configuration files `$client->projects->configs->retrieve(string project, ?string branch, ?string include): ConfigGetResponse` **get** `/v0/projects/{project}/configs` Retrieve the configuration files for a given project. ### Parameters - `project: string` - `branch?:optional string` Branch name, defaults to "main". - `include?:optional string` ### Returns - `array` - `string content` The file content ### Example ```php projects->configs->retrieve( project: 'project', branch: 'branch', include: 'include' ); var_dump($config); ``` #### Response ```json { "foo": { "content": "content" } } ```