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

Rename basic-auth to http-basic, add docs/schema/config support, add local auth file support, add storage to auth.json, add store-auths config option, refs #1862

This commit is contained in:
Jordi Boggiano 2014-05-27 13:50:47 +02:00
parent 1d15910fa6
commit 90d1b6e08a
11 changed files with 202 additions and 50 deletions

View file

@ -94,7 +94,9 @@ class GitHubDriverTest extends \PHPUnit_Framework_TestCase
->will($this->returnValue('{"master_branch": "test_master", "private": true}'));
$configSource = $this->getMock('Composer\Config\ConfigSourceInterface');
$authConfigSource = $this->getMock('Composer\Config\ConfigSourceInterface');
$this->config->setConfigSource($configSource);
$this->config->setAuthConfigSource($authConfigSource);
$repoConfig = array(
'url' => $repoUrl,