Skip to content

Commit 01cd01a

Browse files
committed
Merge branch 'develop'
2 parents dba3c8b + a30bac5 commit 01cd01a

File tree

18 files changed

+830
-59
lines changed

18 files changed

+830
-59
lines changed

composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@
3030
"autoload": {
3131
"psr-4": {
3232
"Moip\\": "src/"
33-
}
33+
},
34+
"files": [
35+
"src/Helper/helpers.php"
36+
]
3437
},
3538
"autoload-dev": {
3639
"psr-4": {

src/MoipBasicAuth.php renamed to src/Auth/BasicAuth.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
<?php
22

3-
namespace Moip;
3+
namespace Moip\Auth;
44

5+
use Moip\Contracts\Authentication;
56
use Requests_Hooks;
67

78
/**
8-
* Class MoipBasicAuth.
9+
* Class BasicAuth.
910
*/
10-
class MoipBasicAuth implements MoipAuthentication
11+
class BasicAuth implements Authentication
1112
{
1213
/**
1314
* Token.

0 commit comments

Comments
 (0)