Browse Source

Updating namespace

Richard Knight 6 years ago
parent
commit
9e553fc973
3 changed files with 23 additions and 23 deletions
  1. 5 5
      composer.json
  2. 0 18
      src/RakTest1Extension.php
  3. 18 0
      src/SquarepayExtension.php

+ 5 - 5
composer.json

@@ -1,6 +1,6 @@
 {
-    "name": "apewave/raktest1",
-    "description": "A test of Bolt Extensions",
+    "name": "ginger/squarepay",
+    "description": "Square Payments Bolt Extension",
     "type": "bolt-extension",
     "keywords": [
 		"test"
@@ -22,17 +22,17 @@
     "prefer-stable": true,
     "autoload": {
         "psr-4": {
-            "Bolt\\Extension\\Apewave\\RakTest1\\": "src"
+            "Bolt\\Extension\\Ginger\\Squarepay\\": "src"
         }
     },
     "autoload-dev": {
         "psr-4": {
-            "Bolt\\Extension\\Apewave\\RakTest1\\Tests\\": "tests",
+            "Bolt\\Extension\\Ginger\\Squarepay\\Tests\\": "tests",
             "Bolt\\Tests\\": "vendor/bolt/bolt/tests/phpunit/unit/"
         }
     },
     "extra": {
         "bolt-assets": "web",
-        "bolt-class": "Bolt\\Extension\\Apewave\\RakTest1\\RakTest1Extension"
+        "bolt-class": "Bolt\\Extension\\Ginger\\Squarepay\\SquarepayExtension"
     }
 }

+ 0 - 18
src/RakTest1Extension.php

@@ -1,18 +0,0 @@
-<?php
-
-namespace Bolt\Extension\Apewave\RakTest1;
-
-use Bolt\Extension\SimpleExtension;
-
-/**
- * RakTest1 extension class.
- *
- * @author Richard Knight <rich@apewave.com>
- */
-class RakTest1Extension extends SimpleExtension
-{
-	
-
-
-
-}

+ 18 - 0
src/SquarepayExtension.php

@@ -0,0 +1,18 @@
+<?php
+
+namespace Bolt\Extension\Ginger\Squarepay;
+
+use Bolt\Extension\SimpleExtension;
+
+/**
+ * Squarepay extension class.
+ *
+ * @author Richard Knight <rich@apewave.com>
+ */
+class SquarepayExtension extends SimpleExtension
+{
+	
+
+
+
+}