Skip to content

Commit

Permalink
⚡ Changing project namespace
Browse files Browse the repository at this point in the history
As the namespace ended with Phinx, it got very repetitive.
  • Loading branch information
ricardoapaes committed Mar 24, 2022
1 parent d209cb1 commit 7c53664
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,20 @@
],
"require": {
"php": ">=5.6",
"robmorgan/phinx": "^0.11.7"
"robmorgan/phinx": ">=0.10"
},
"require-dev": {
"phpunit/phpunit": "^5.0 || ^9.0",
"codeception/codeception": "^4.1"
},
"autoload": {
"psr-4": {
"Like\\Codeception\\Phinx\\": "src/"
"Like\\Codeception\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Like\\Codeception\\Phinx\\Tests\\": "tests/"
"Like\\Codeception\\Tests\\": "tests/"
}
},
"authors": [
Expand Down
2 changes: 1 addition & 1 deletion src/Phinx.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Like\Codeception\Phinx;
namespace Like\Codeception;

use Codeception\Module;
use Codeception\TestInterface;
Expand Down
2 changes: 1 addition & 1 deletion tests/PhinxTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Like\NomeDaLib\Tests;

use Like\Codeception\Phinx\Phinx;
use Like\Codeception\Phinx;
use PHPUnit\Framework\TestCase;

class PhinxTest extends TestCase {
Expand Down

0 comments on commit 7c53664

Please sign in to comment.