Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Commit

Permalink
Change Namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
lbeauvisage committed Sep 3, 2020
1 parent a7859d8 commit b3bf716
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Follow the [getting started guide](https://developers.facebook.com/docs/instagra

Require it using Composer.
```
composer require nineteen/statamic-instagram-basic-display-api
composer require nineteensquared/statamic-instagram-basic-display-api
```

## Configuration
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "nineteen/instagram",
"name": "nineteensquared/instagram",
"type": "statamic-addon",
"autoload": {
"psr-4": {
"Nineteen\\Instagram\\": "src"
"NineteenSquared\\Instagram\\": "src"
}
},
"extra": {
Expand All @@ -13,7 +13,7 @@
},
"laravel": {
"providers": [
"Nineteen\\Instagram\\ServiceProvider"
"NineteenSquared\\Instagram\\ServiceProvider"
]
}
},
Expand Down
4 changes: 2 additions & 2 deletions src/Http/Controllers/InstagramLoginController.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php

Namespace Nineteen\Instagram\Http\Controllers;
Namespace NineteenSquared\Instagram\Http\Controllers;

use Illuminate\Http\Request;
use Illuminate\Support\Facades\Log;
use Nineteen\Instagram\InstagramApi;
use NineteenSquared\Instagram\InstagramApi;
use Statamic\Http\Controllers\CP\CpController;

class InstagramLoginController extends CpController
Expand Down
3 changes: 1 addition & 2 deletions src/InstagramApi.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<?php


namespace Nineteen\Instagram;
namespace NineteenSquared\Instagram;

use Carbon\Carbon;
use EspressoDev\InstagramBasicDisplay\InstagramBasicDisplay;
Expand Down
4 changes: 2 additions & 2 deletions src/ServiceProvider.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Nineteen\Instagram;
namespace NineteenSquared\Instagram;

use Statamic\Facades\CP\Nav;
use Statamic\Facades\Permission;
Expand All @@ -13,7 +13,7 @@ class ServiceProvider extends AddonServiceProvider
];

protected $tags = [
\Nineteen\Instagram\Tags\Instagram::class
\NineteenSquared\Instagram\Tags\Instagram::class
];

public function boot()
Expand Down
4 changes: 2 additions & 2 deletions src/Tags/Instagram.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php

namespace Nineteen\Instagram\Tags;
namespace NineteenSquared\Instagram\Tags;

use Carbon\Carbon;
use Illuminate\Support\Facades\Cache;
use Illuminate\Support\Facades\Log;
use Nineteen\Instagram\InstagramApi;
use NineteenSquared\Instagram\InstagramApi;
use Statamic\Tags\Tags;

class Instagram extends Tags
Expand Down

0 comments on commit b3bf716

Please sign in to comment.