* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Fxp\Composer\AssetPlugin\Tests\Fixtures\Repository\Vcs; /** * Mock vcs driver for url packages test. * * @author François Pluchino */ class MockVcsDriverWithUrlPackages extends MockVcsDriverWithPackages { protected $composer = array( 'branch:master' => array( 'version' => '2.0', ), 'branch:1.x' => array( 'version' => '1.1', ), 'tag:v1.0.0' => array( 'version' => '1.0', ), 'tag:v1.0.1' => array( ), 'tag:invalid' => array( 'description' => 'invalid tag name', ), ); }