blob: 2eeff25b087a7afb2c9bcabd0ac2bdb92c2e17bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{
"name": "shirabe/e2e-script-command",
"description": "E2E fixture project: composer.json scripts naming Command classes, run against upstream Composer and Shirabe.",
"autoload": {
"psr-4": {
"ShirabeTest\\ScriptCommand\\": "src/"
}
},
"scripts": {
"greet": "ShirabeTest\\ScriptCommand\\GreetCommand",
"renamed": "ShirabeTest\\ScriptCommand\\MismatchedNameCommand",
"single": "ShirabeTest\\ScriptCommand\\SingleAppCommand",
"plain": "echo plain-script"
},
"scripts-descriptions": {
"renamed": "Description taken from composer.json"
},
"repositories": [
{
"packagist.org": false
}
]
}
|