]> _ Git - cubist_util.git/commitdiff
initial commit
authorroot <root@batman.cubedesigners.com>
Wed, 20 Feb 2019 16:19:21 +0000 (17:19 +0100)
committerroot <root@batman.cubedesigners.com>
Wed, 20 Feb 2019 16:19:21 +0000 (17:19 +0100)
.gitignore [new file with mode: 0644]
composer.json [new file with mode: 0644]
src/util/SayHello.php [new file with mode: 0644]

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