Skip to content

Commit

Permalink
Bump :) updated namespace optimo to optimoapps
Browse files Browse the repository at this point in the history
Signed-off-by: satz <sathish.thi@gmail.om>
  • Loading branch information
ssatz authored and satz committed Jan 28, 2019
1 parent 6aea45e commit bc32c71
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 21 deletions.
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "optimo/joloapi",
"name": "optimoapps/jolo-api",
"description": "A Laravel package for Jolo API money transfer",
"keywords": [
"jolo api",
Expand All @@ -21,12 +21,12 @@
},
"autoload": {
"psr-4": {
"Optimo\\JoloApi\\": "src/"
"OptimoApps\\JoloApi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Optimo\\JoloApi\\Test\\": "tests/"
"OptimoApps\\JoloApi\\Test\\": "tests/"
}
},
"scripts": {
Expand All @@ -38,10 +38,10 @@
"extra": {
"laravel": {
"providers": [
"Optimo\\JoloApi\\JoloApiServiceProvider"
"OptimoApps\\JoloApi\\JoloApiServiceProvider"
],
"aliases": {
"JoloApi": "Optimo\\JoloApi\\JoloApiFacade"
"JoloApi": "OptimoApps\\JoloApi\\JoloApiFacade"
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion src/Enum/JoloApiEnum.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*
*/

namespace Optimo\JoloApi\Enum;
namespace OptimoApps\JoloApi\Enum;


final class JoloApiEnum
Expand Down
2 changes: 1 addition & 1 deletion src/Exceptions/InvalidConfiguration.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*
*/

namespace Optimo\JoloApi\Exceptions;
namespace OptimoApps\JoloApi\Exceptions;
use Exception;

/**
Expand Down
4 changes: 2 additions & 2 deletions src/JoloApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
*
*/

namespace Optimo\JoloApi;
namespace OptimoApps\JoloApi;

use GuzzleHttp\Client;
use GuzzleHttp\Exception\BadResponseException as HttpBadResponseException;
use GuzzleHttp\Exception\ClientException as HttpClientException;
use GuzzleHttp\Exception\ServerException as HttpServerException;
use Illuminate\Support\Fluent;
use Optimo\JoloApi\Enum\JoloApiEnum;
use OptimoApps\JoloApi\Enum\JoloApiEnum;
use Psr\Http\Message\StreamInterface;

/**
Expand Down
2 changes: 1 addition & 1 deletion src/JoloApiFacade.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*
*/

namespace Optimo\JoloApi;
namespace OptimoApps\JoloApi;


use Illuminate\Support\Facades\Facade;
Expand Down
2 changes: 1 addition & 1 deletion src/JoloApiFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*
*/

namespace Optimo\JoloApi;
namespace OptimoApps\JoloApi;

use GuzzleHttp\Client;

Expand Down
4 changes: 2 additions & 2 deletions src/JoloApiServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
*
*/

namespace Optimo\JoloApi;
namespace OptimoApps\JoloApi;


use Illuminate\Support\ServiceProvider;
use Optimo\JoloApi\Exceptions\InvalidConfiguration;
use OptimoApps\JoloApi\Exceptions\InvalidConfiguration;

/**
* Class JoloApiServiceProvider
Expand Down
6 changes: 3 additions & 3 deletions tests/Integration/JoloApiServiceProviderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
* *
*
*/
namespace Optimo\JoloApi\Test\Integration;
namespace OptimoApps\JoloApi\Test\Integration;

use Optimo\JoloApi\Exceptions\InvalidConfiguration;
use Optimo\JoloApi\JoloApiFacade;
use OptimoApps\JoloApi\Exceptions\InvalidConfiguration;
use OptimoApps\JoloApi\JoloApiFacade;


class JoloApiServiceProviderTest extends TestCase
Expand Down
6 changes: 3 additions & 3 deletions tests/Integration/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
*
*/

namespace Optimo\JoloApi\Test\Integration;
namespace OptimoApps\JoloApi\Test\Integration;

use Optimo\JoloApi\JoloApiFacade;
use Optimo\JoloApi\JoloApiServiceProvider;
use OptimoApps\JoloApi\JoloApiFacade;
use OptimoApps\JoloApi\JoloApiServiceProvider;
use Orchestra\Testbench\TestCase as OrchestraTestCase;

abstract class TestCase extends OrchestraTestCase
Expand Down
4 changes: 2 additions & 2 deletions tests/Unit/JoloApiTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
*
*/

namespace Optimo\JoloApi\Test\Unit;
namespace OptimoApps\JoloApi\Test\Unit;


use Mockery;
use Optimo\JoloApi\JoloApi;
use OptimoApps\JoloApi\JoloApi;
use PHPUnit\Framework\TestCase;

/**
Expand Down

0 comments on commit bc32c71

Please sign in to comment.