Skip to content

Commit

Permalink
Merge pull request #3 from phillipsdata/update-namespace
Browse files Browse the repository at this point in the history
Update namespace
  • Loading branch information
clphillips committed Dec 11, 2015
2 parents d161244 + b62f13f commit 45ed879
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
vendor/
composer.lock
phpunit.xml
.DS_Store
.DS_Store
5 changes: 4 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"psr-4": {"minphp\\Input\\": "src"}
"psr-4": {"Minphp\\Input\\": "src"}
},
"autoload-dev": {
"psr-4": {"Minphp\\Input\\Tests\\": "tests"}
}
}
4 changes: 2 additions & 2 deletions src/Input.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
namespace minphp\Input;
namespace Minphp\Input;

use \Exception;
use Exception;

/**
* Supplies methods useful in verifying and formatting input data. Provides a
Expand Down
7 changes: 4 additions & 3 deletions tests/InputTest.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<?php
namespace minphp\Input;
namespace Minphp\Input\Tests;

use \PHPUnit_Framework_TestCase;
use PHPUnit_Framework_TestCase;
use Minphp\Input\Input;

/**
* @coversDefaultClass \minphp\Input\Input
* @coversDefaultClass \Minphp\Input\Input
*/
class InputTest extends PHPUnit_Framework_TestCase
{
Expand Down

0 comments on commit 45ed879

Please sign in to comment.