]> git.mxchange.org Git - friendica-addons.git/blob
51b213bc700de8737a691799829198ff3aec8601
[friendica-addons.git] /
1 <?php
2
3 /*
4  * This file is part of the Fxp Composer Asset Plugin package.
5  *
6  * (c) François Pluchino <francois.pluchino@gmail.com>
7  *
8  * For the full copyright and license information, please view the LICENSE
9  * file that was distributed with this source code.
10  */
11
12 namespace Fxp\Composer\AssetPlugin\Tests\Fixtures\Repository\Vcs;
13
14 /**
15  * Mock vcs driver for url packages test.
16  *
17  * @author François Pluchino <francois.pluchino@gmail.com>
18  */
19 class MockVcsDriverWithUrlPackages extends MockVcsDriverWithPackages
20 {
21     protected $composer = array(
22         'branch:master' => array(
23             'version' => '2.0',
24         ),
25         'branch:1.x' => array(
26             'version' => '1.1',
27         ),
28         'tag:v1.0.0' => array(
29             'version' => '1.0',
30         ),
31         'tag:v1.0.1' => array(
32         ),
33         'tag:invalid' => array(
34             'description' => 'invalid tag name',
35         ),
36     );
37 }