Name Change

This commit is contained in:
2019-04-05 19:58:32 -03:00
parent 00b9db7c91
commit 4152639264
5 changed files with 8 additions and 8 deletions
+4 -4
View File
@@ -1,16 +1,16 @@
{ {
"name" : "ahwelp/bborm", "name" : "urfat/orm",
"description" : "Diferent ORM", "description" : "Diferent ORM",
"type" : "library", "type" : "library",
"authors" : [ "authors" : [
{ {
"name" : "ahwelp", "name" : "Artur Welp",
"email" : "ahwelp@ahwelp.com" "email" : "ahwelp@universo.univates.br"
} }
], ],
"autoload" : { "autoload" : {
"psr-4" : { "psr-4" : {
"BBOrm\\" : "src/BBOrm/" "ORm\\" : "src/ORM/"
} }
}, },
"require" : { } "require" : { }
+4 -4
View File
@@ -1,8 +1,8 @@
<?php <?php
include_once 'BBOrm/Connections.php'; include_once 'ORM/Connections.php';
include_once 'BBOrm/DBInstance.php'; include_once 'ORM/DBInstance.php';
include_once 'BBOrm/Entity.php'; include_once 'ORM/Entity.php';
class Pais extends Entity{ class Pais extends Entity{
@@ -95,4 +95,4 @@ var_dump( $a->permissions() );
//$a = new Municipio(); //$a = new Municipio();
//$a->load(1); //$a->load(1);
//$a->estado(); //$a->estado();