]> _ Git - cubist_cms-front.git/commitdiff
initial commit
authorroot <root@batman.cubedesigners.com>
Thu, 21 Feb 2019 16:36:29 +0000 (17:36 +0100)
committerroot <root@batman.cubedesigners.com>
Thu, 21 Feb 2019 16:36:29 +0000 (17:36 +0100)
.gitignore [new file with mode: 0644]
composer.json [new file with mode: 0644]
src/Cubist/Cms-front/SayHello.php [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..8925195
--- /dev/null
@@ -0,0 +1,3 @@
+.idea
+vendor
+composer.lock
\ No newline at end of file
diff --git a/composer.json b/composer.json
new file mode 100644 (file)
index 0000000..62bdd95
--- /dev/null
@@ -0,0 +1 @@
+{"name":"cubist\/cms-front","description":"cms-front cubist composer package","type":"library","license":"proprietary","minimum-stability":"dev","autoload":{"psr-0":{"Cubist\\Cms-front":"src\/"}},"authors":[{"name":"Vincent Vanwaelscappel","email":"vincent@cubedesigners.com"}],"require":{"php":">=5.4.0"},"repositories":[{"type":"composer","url":"https:\/\/composer.cubedesigners.com\/"}]}
\ No newline at end of file
diff --git a/src/Cubist/Cms-front/SayHello.php b/src/Cubist/Cms-front/SayHello.php
new file mode 100644 (file)
index 0000000..bc6f1bb
--- /dev/null
@@ -0,0 +1,9 @@
+<?php
+namespace Cubist\Cms-front;
+class SayHello
+{
+        public static function world()
+        {
+                return 'Hello World, Composer!';
+        }
+}
\ No newline at end of file