aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/tests/plugin/fixtures/e2e-script-command/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/tests/plugin/fixtures/e2e-script-command/composer.json')
-rw-r--r--crates/shirabe/tests/plugin/fixtures/e2e-script-command/composer.json23
1 files changed, 23 insertions, 0 deletions
diff --git a/crates/shirabe/tests/plugin/fixtures/e2e-script-command/composer.json b/crates/shirabe/tests/plugin/fixtures/e2e-script-command/composer.json
new file mode 100644
index 00000000..2eeff25b
--- /dev/null
+++ b/crates/shirabe/tests/plugin/fixtures/e2e-script-command/composer.json
@@ -0,0 +1,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
+ }
+ ]
+}