ahwelp 6 rokov pred
rodič
commit
4152639264
5 zmenil súbory, kde vykonal 8 pridanie a 8 odobranie
  1. 4 4
      composer.json
  2. 0 0
      src/ORM/Connections.php
  3. 0 0
      src/ORM/DBInstance.php
  4. 0 0
      src/ORM/Entity.php
  5. 4 4
      src/index.php

+ 4 - 4
composer.json

@@ -1,16 +1,16 @@
 {
-    "name" : "ahwelp/bborm",
+    "name" : "urfat/orm",
     "description" : "Diferent ORM",
     "type" : "library",
     "authors" : [
         {
-            "name" : "ahwelp",
-            "email" : "ahwelp@ahwelp.com"
+            "name" : "Artur Welp",
+            "email" : "ahwelp@universo.univates.br"
         }
     ],
     "autoload" : {
         "psr-4" : {
-            "BBOrm\\" : "src/BBOrm/"
+            "ORm\\" : "src/ORM/"
         }
     },
     "require" : { }

+ 0 - 0
src/BBOrm/Connections.php → src/ORM/Connections.php


+ 0 - 0
src/BBOrm/DBInstance.php → src/ORM/DBInstance.php


+ 0 - 0
src/BBOrm/Entity.php → src/ORM/Entity.php


+ 4 - 4
src/index.php

@@ -1,8 +1,8 @@
 <?php
 
-include_once 'BBOrm/Connections.php';
-include_once 'BBOrm/DBInstance.php';
-include_once 'BBOrm/Entity.php';
+include_once 'ORM/Connections.php';
+include_once 'ORM/DBInstance.php';
+include_once 'ORM/Entity.php';
 
 class Pais extends Entity{
     
@@ -95,4 +95,4 @@ var_dump( $a->permissions() );
 
 //$a = new Municipio();
 //$a->load(1);
-//$a->estado();
+//$a->estado();