Skip to content

Commit 6785653

Browse files
Renamed repo to daveismyname/laravel-msgraph
1 parent cb29b32 commit 6785653

15 files changed

+34
-34
lines changed

changelog.md

+4
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,7 @@ Added new traits:
5050
* Events
5151

5252
Renamed all methods to be action followed by name ie `getEmails`
53+
54+
## Version 1.1.5
55+
56+
Renamed repo to daveismyname/laravel-msgraph

composer.json

+5-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "daveismynamelaravel/msgraph",
2+
"name": "daveismyname/laravel-msgraph",
33
"description": "A Laravel Microsoft Graph API package",
44
"license": "MIT",
55
"authors": [
@@ -9,29 +9,25 @@
99
"homepage": "https://daveismyname.blog"
1010
}
1111
],
12-
"homepage": "https://github.com/daveismynamelaravel/box",
12+
"homepage": "https://github.com/daveismyname/laravel-msgraph",
1313
"keywords": ["Laravel", "MsGraph", "Graph"],
1414
"require": {
1515
"illuminate/support": "~5",
1616
"league/oauth2-client": "^1.4",
1717
"guzzlehttp/guzzle": "^6"
1818
},
19-
"require-dev": {
20-
"phpunit/phpunit": "~6.0",
21-
"orchestra/testbench": "~3.0"
22-
},
2319
"autoload": {
2420
"psr-4": {
25-
"DaveismynameLaravel\\MsGraph\\": "src/"
21+
"Daveismyname/MsGraph\\": "src/"
2622
}
2723
},
2824
"extra": {
2925
"laravel": {
3026
"providers": [
31-
"DaveismynameLaravel\\MsGraph\\MsGraphServiceProvider"
27+
"Daveismyname\\MsGraph\\MsGraphServiceProvider"
3228
],
3329
"aliases": {
34-
"MsGraph": "DaveismynameLaravel\\MsGraph\\Facades\\MsGraph"
30+
"MsGraph": "Daveismyname\\MsGraph\\Facades\\MsGraph"
3531
}
3632
}
3733
}

readme.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,22 @@ The other options are optional, click save at the bottom of the page to save you
2828
Via Composer
2929

3030
``` bash
31-
$ composer require daveismynamelaravel/msgraph
31+
$ composer require daveismyname/laravel-msgraph
3232
```
3333

3434
In Laravel 5.5 the service provider will automatically get registered. In older versions of the framework just add the service provider in config/app.php file:
3535

3636
```
3737
'providers' => [
3838
// ...
39-
DaveismynameLaravel\MsGraph\MsGraphServiceProvider::class,
39+
Daveismyname\MsGraph\MsGraphServiceProvider::class,
4040
];
4141
```
4242

4343
You can publish the migration with:
4444

4545
```
46-
php artisan vendor:publish --provider="DaveismynameLaravel\MsGraph\MsGraphServiceProvider" --tag="migrations"
46+
php artisan vendor:publish --provider="Daveismyname\MsGraph\MsGraphServiceProvider" --tag="migrations"
4747
```
4848

4949
After the migration has been published you can create the tokens tables by running the migration:
@@ -55,7 +55,7 @@ php artisan migrate
5555
You can publish the config file with:
5656

5757
```
58-
php artisan vendor:publish --provider="DaveismynameLaravel\MsGraph\MsGraphServiceProvider" --tag="config"
58+
php artisan vendor:publish --provider="Daveismyname\MsGraph\MsGraphServiceProvider" --tag="config"
5959
```
6060

6161
When published, the config/msgraph.php config file contains:
@@ -280,7 +280,7 @@ Please see the [changelog](changelog.md) for more information on what has change
280280

281281
Contributions are welcome and will be fully credited.
282282

283-
Contributions are accepted via Pull Requests on [Github](https://github.com/daveismynamelaravel/msgrapth).
283+
Contributions are accepted via Pull Requests on [Github](https://github.com/daveismyname/laravel-msgrapth).
284284

285285
## Pull Requests
286286

src/Api/Calendar.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace DaveismynameLaravel\MsGraph\Api;
3+
namespace Daveismyname\MsGraph\Api;
44

55
trait Calendar
66
{

src/Api/CalendarEvents.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace DaveismynameLaravel\MsGraph\Api;
3+
namespace Daveismyname\MsGraph\Api;
44

55
trait CalendarEvents
66
{

src/Api/Contacts.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace DaveismynameLaravel\MsGraph\Api;
3+
namespace Daveismyname\MsGraph\Api;
44

55
trait Contacts {
66

src/Api/Drive.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace DaveismynameLaravel\MsGraph\Api;
3+
namespace Daveismyname\MsGraph\Api;
44

55
trait Drive {
66

src/Api/Emails.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace DaveismynameLaravel\MsGraph\Api;
3+
namespace Daveismyname\MsGraph\Api;
44

55
trait Emails {
66

src/Api/Events.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace DaveismynameLaravel\MsGraph\Api;
3+
namespace Daveismyname\MsGraph\Api;
44

55
trait Events
66
{

src/Api/ToDo.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace DaveismynameLaravel\MsGraph\Api;
3+
namespace Daveismyname\MsGraph\Api;
44

55
trait ToDo {
66

src/Facades/MsGraph.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace DaveismynameLaravel\MsGraph\Facades;
3+
namespace Daveismyname\MsGraph\Facades;
44

55
use Illuminate\Support\Facades\Facade;
66

src/Models/MsGraphToken.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace DaveismynameLaravel\MsGraph\Models;
3+
namespace Daveismyname\MsGraph\Models;
44

55
use Illuminate\Database\Eloquent\Model;
66

src/MsGraph.php

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
<?php
22

3-
namespace DaveismynameLaravel\MsGraph;
3+
namespace Daveismyname\MsGraph;
44

55
/**
66
* msgraph api documenation can be found at https://developer.msgraph.com/reference
77
**/
88

9-
use DaveismynameLaravel\MsGraph\Facades\MsGraph as Api;
10-
use DaveismynameLaravel\MsGraph\Api\Contacts;
11-
use DaveismynameLaravel\MsGraph\Api\Drive;
12-
use DaveismynameLaravel\MsGraph\Api\Emails;
13-
use DaveismynameLaravel\MsGraph\Api\ToDo;
14-
use DaveismynameLaravel\MsGraph\Models\MsGraphToken;
9+
use Daveismyname\MsGraph\Facades\MsGraph as Api;
10+
use Daveismyname\MsGraph\Api\Contacts;
11+
use Daveismyname\MsGraph\Api\Drive;
12+
use Daveismyname\MsGraph\Api\Emails;
13+
use Daveismyname\MsGraph\Api\ToDo;
14+
use Daveismyname\MsGraph\Models\MsGraphToken;
1515

1616
use League\OAuth2\Client\Provider\GenericProvider;
1717
use League\OAuth2\Client\Provider\Exception\IdentityProviderException;

src/MsGraphAuthenticated.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

3-
namespace DaveismynameLaravel\MsGraph;
3+
namespace Daveismyname\MsGraph;
44

55
use Closure;
6-
use DaveismynameLaravel\MsGraph\Facades\MsGraph;
6+
use Daveismyname\MsGraph\Facades\MsGraph;
77

88
class MsGraphAuthenticated
99
{

src/MsGraphServiceProvider.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

3-
namespace DaveismynameLaravel\MsGraph;
3+
namespace Daveismyname\MsGraph;
44

55
use Illuminate\Support\ServiceProvider;
6-
use DaveismynameLaravel\MsGraph\MsGraphAuthenticated;
6+
use Daveismyname\MsGraph\MsGraphAuthenticated;
77

88
class MsGraphServiceProvider extends ServiceProvider
99
{

0 commit comments

Comments
 (0)