Skip to content

Commit

Permalink
Changed namespace from 'minphp/Record' to 'Minphp/Record'
Browse files Browse the repository at this point in the history
  • Loading branch information
clphillips committed Nov 30, 2015
1 parent 40c02ef commit 7038d4b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# minphp/Record
# Minphp/Record

[![Build Status](https://travis-ci.org/phillipsdata/minphp-record.svg?banch=master)](https://travis-ci.org/phillipsdata/minphp-record) [![Coverage Status](https://coveralls.io/repos/phillipsdata/minphp-record/badge.svg)](https://coveralls.io/r/phillipsdata/minphp-record)

Expand All @@ -19,7 +19,7 @@ composer require minphp/record:~1.0
First, initialize your connection:

```php
use minphp\Record\Record;
use Minphp\Record\Record;

$dbInfo = array(
'driver' => 'mysql',
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@
],
"require": {
"php": ">=5.3.0",
"minphp/db": "~1.0"
"minphp/db": "~2.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"squizlabs/php_codesniffer": "~2.2"
},
"autoload": {
"psr-4": {"minphp\\Record\\": "src"}
"psr-4": {"Minphp\\Record\\": "src"}
},
"autoload-dev": {
"psr-4": {"minphp\\Record\\Tests\\": "tests"}
"psr-4": {"Minphp\\Record\\Tests\\": "tests"}
}
}
4 changes: 2 additions & 2 deletions src/Record.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
namespace minphp\Record;
namespace Minphp\Record;

use minphp\Db\PdoConnection;
use Minphp\Db\PdoConnection;
use stdClass;

/**
Expand Down
8 changes: 4 additions & 4 deletions tests/Unit/RecordTest.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php
namespace minphp\Record\Tests\Unit;
namespace Minphp\Record\Tests\Unit;

use minphp\Record\Record;
use Minphp\Record\Record;
use PHPUnit_Framework_TestCase;

/**
* @coversDefaultClass \minphp\Record\Record
* @coversDefaultClass \Minphp\Record\Record
*/
class RecordTest extends PHPUnit_Framework_TestCase
{
Expand All @@ -19,7 +19,7 @@ public function setUp()

private function instance()
{
return '\minphp\Record\Record';
return '\Minphp\Record\Record';
}

/**
Expand Down

0 comments on commit 7038d4b

Please sign in to comment.