]> _ Git - cubist_gtag.git/commitdiff
initial commit
authorroot <root@batman.cubedesigners.com>
Fri, 22 Feb 2019 14:37:50 +0000 (15:37 +0100)
committerroot <root@batman.cubedesigners.com>
Fri, 22 Feb 2019 14:37:50 +0000 (15:37 +0100)
.gitignore [new file with mode: 0644]
composer.json [new file with mode: 0644]
src/Cubist/Gtag/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..88eef93
--- /dev/null
@@ -0,0 +1 @@
+{"name":"cubist\/gtag","description":"gtag cubist composer package","type":"library","license":"proprietary","minimum-stability":"dev","autoload":{"psr-0":{"Cubist\\Gtag":"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/Gtag/SayHello.php b/src/Cubist/Gtag/SayHello.php
new file mode 100644 (file)
index 0000000..95e7081
--- /dev/null
@@ -0,0 +1,9 @@
+<?php
+namespace Cubist\Gtag;
+class SayHello
+{
+        public static function world()
+        {
+                return 'Hello World, Composer!';
+        }
+}
\ No newline at end of file