]> _ Git - cubist_cms-front.git/commitdiff
wip #2413 @1.5
authorVincent Vanwaelscappel <vincent@cubedesigners.com>
Thu, 21 Feb 2019 18:05:48 +0000 (19:05 +0100)
committerVincent Vanwaelscappel <vincent@cubedesigners.com>
Thu, 21 Feb 2019 18:05:48 +0000 (19:05 +0100)
composer.json
src/Cubist/Cms-front/SayHello.php [deleted file]
src/Cubist/Front/SayHello.php [new file with mode: 0644]
src/resources/views/head/meta.blade.php [new file with mode: 0644]

index 62bdd95e4e951a8d6c831578a457ec5efe17d81e..4baae91bc2fd3e23c777c10b20cf9737ae4ccc97 100644 (file)
@@ -1 +1,27 @@
-{"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
+{
+  "name": "cubist\/cms-front",
+  "description": "Cubist CMS Front",
+  "type": "library",
+  "license": "proprietary",
+  "minimum-stability": "dev",
+  "autoload": {
+    "psr-4": {
+      "Cubist\\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
deleted file mode 100644 (file)
index bc6f1bb..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-<?php
-namespace Cubist\Cms-front;
-class SayHello
-{
-        public static function world()
-        {
-                return 'Hello World, Composer!';
-        }
-}
\ No newline at end of file
diff --git a/src/Cubist/Front/SayHello.php b/src/Cubist/Front/SayHello.php
new file mode 100644 (file)
index 0000000..c413e6f
--- /dev/null
@@ -0,0 +1,10 @@
+<?php
+
+namespace Cubist\Front;
+class SayHello
+{
+    public static function world()
+    {
+        return 'Hello World, Composer!';
+    }
+}
\ No newline at end of file
diff --git a/src/resources/views/head/meta.blade.php b/src/resources/views/head/meta.blade.php
new file mode 100644 (file)
index 0000000..5d2bbf7
--- /dev/null
@@ -0,0 +1,7 @@
+<?php
+/**
+ * Created by IntelliJ IDEA.
+ * User: Vincent
+ * Date: 21/02/2019
+ * Time: 18:31
+ */
\ No newline at end of file