aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/tests/plugin/fixtures/e2e-installer/project/composer.json
blob: 64c1bb325fb5f0c6676e8d506d03b2957dd34df4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
    "name": "shirabe/e2e-installer",
    "description": "E2E fixture project: install a custom package type through a plugin-provided installer.",
    "repositories": [
        {
            "type": "path",
            "url": "../plugin",
            "options": {
                "symlink": false
            }
        },
        {
            "type": "path",
            "url": "../packages/*",
            "options": {
                "symlink": false
            }
        },
        {
            "packagist.org": false
        }
    ],
    "require": {
        "shirabe-test/asset-installer": "1.0.0",
        "shirabe-test/asset-a": "1.0.0"
    },
    "config": {
        "allow-plugins": {
            "shirabe-test/asset-installer": true
        }
    }
}