]> _ Git - composer.git/commitdiff
wip #2600 @1
authorVincent Vanwaelscappel <vincent@cubedesigners.com>
Tue, 19 Feb 2019 16:33:31 +0000 (17:33 +0100)
committerVincent Vanwaelscappel <vincent@cubedesigners.com>
Tue, 19 Feb 2019 16:33:31 +0000 (17:33 +0100)
.gitignore [new file with mode: 0644]
cubist/dummy/composer.json [new file with mode: 0644]
cubist/dummy/src/Dummy/SayHello.php [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..bfa6a22
--- /dev/null
@@ -0,0 +1 @@
+# Created by .ignore support plugin (hsz.mobi)
diff --git a/cubist/dummy/composer.json b/cubist/dummy/composer.json
new file mode 100644 (file)
index 0000000..93d7986
--- /dev/null
@@ -0,0 +1,22 @@
+{
+  "name": "cubist/dummy",
+  "description": "Dummy composer package",
+  "type": "library",
+  "license": "proprietary",
+  "minimum-stability": "dev",
+  "require": {
+    "php": ">=5.3.0"
+  },
+  "autoload": {
+    "psr-0": {
+      "Dummy": "src/"
+    }
+  },
+  "authors": [
+    {
+      "name": "Vincent Vanwaelscappel",
+      "email": "vincent@cubedesigners.com"
+    }
+  ],
+  "require": {}
+}
diff --git a/cubist/dummy/src/Dummy/SayHello.php b/cubist/dummy/src/Dummy/SayHello.php
new file mode 100644 (file)
index 0000000..1c7f262
--- /dev/null
@@ -0,0 +1,10 @@
+<?php
+
+namespace Dummy;
+class SayHello
+{
+       public static function world()
+       {
+               return 'Hello World, Composer!';
+       }
+}
\ No newline at end of file