1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 00:22:53 +00:00

Merge remote-tracking branch 'bboer/feature/svn-alternative-structures'

Conflicts:
	src/Composer/Repository/Vcs/GitHubDriver.php
This commit is contained in:
Jordi Boggiano 2012-10-19 12:19:19 +02:00
commit 0a3097c569
6 changed files with 62 additions and 21 deletions

View file

@ -48,7 +48,11 @@ class SvnDriverTest extends \PHPUnit_Framework_TestCase
'home' => sys_get_temp_dir() . '/composer-test',
),
));
$svn = new SvnDriver('http://till:secret@corp.svn.local/repo', $console, $config, $process);
$repoConfig = array(
'url' => 'http://till:secret@corp.svn.local/repo',
);
$svn = new SvnDriver($repoConfig, $console, $config, $process);
$svn->initialize();
}