Skip to content

Commit

Permalink
Trying to make composer v2 happy.
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Moody committed May 24, 2020
1 parent a211c4a commit cd241d9
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 8 deletions.
9 changes: 7 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,13 @@

"autoload": {
"psr-4": {
"werx\\Forms\\": "src/",
"werx\\FormsTests\\": "tests/"
"werx\\Forms\\": "src/"
}
},

"autoload-dev": {
"psr-4": {
"werxFormsTests\\": "tests/"
}
},

Expand Down
2 changes: 1 addition & 1 deletion tests/FormTests.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
namespace werx\FormsTests;
namespace werxFormsTests;

use werx\Forms\Form;

Expand Down
2 changes: 1 addition & 1 deletion tests/InputBuilderButtonTests.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
namespace werx\FormsTests;
namespace werxFormsTests;

use werx\Forms\Form;

Expand Down
2 changes: 1 addition & 1 deletion tests/InputBuilderCheckboxRadioTests.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
namespace werx\FormsTests;
namespace werxFormsTests;

use werx\Forms\Form;

Expand Down
2 changes: 1 addition & 1 deletion tests/InputBuilderLabelTests.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
namespace werx\FormsTests;
namespace werxFormsTests;

use werx\Forms\Form;

Expand Down
2 changes: 1 addition & 1 deletion tests/InputBuilderSelectTests.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
namespace werx\FormsTests;
namespace werxFormsTests;

use werx\Forms\Form;

Expand Down
2 changes: 1 addition & 1 deletion tests/InputBuilderTextTests.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
namespace werx\FormsTests;
namespace werxFormsTests;

use werx\Forms\Form;

Expand Down

0 comments on commit cd241d9

Please sign in to comment.