瀏覽代碼

Changing name

ahwelp 6 年之前
父節點
當前提交
8636787b83
共有 3 個文件被更改,包括 6 次插入6 次删除
  1. 4 4
      composer.json
  2. 1 1
      src/Routes/Route.php
  3. 1 1
      src/Routes/RouteCollection.php

+ 4 - 4
composer.json

@@ -1,16 +1,16 @@
 {
-    "name" : "ahwelp/bbrouter",
+    "name" : "urfat/urfat-routes",
     "description" : "Different Routes",
     "type" : "library",
     "authors" : [
         {
-            "name" : "ahwelp",
-            "email" : "ahwelp@ahwelp.com"
+            "name" : "Artur Welp",
+            "email" : "ahwelp@universo.univates.br"
         }
     ],
     "autoload" : {
         "psr-4" : {
-            "BBRouter\\" : "src/BBRouter/"
+            "Routes\\" : "src/Routes/"
         }
     },
     "require" : { }

+ 1 - 1
src/BBRouter/Route.php → src/Routes/Route.php

@@ -1,6 +1,6 @@
 <?php
 
-namespace BBRouter;
+namespace Routes;
 
 /*
  *

+ 1 - 1
src/BBRouter/RouteCollection.php → src/Routes/RouteCollection.php

@@ -1,6 +1,6 @@
 <?php
 
-namespace BBRouter;
+namespace Routes;
 
 class RouteCollection {