Skip to content

Commit 6dd8c4a

Browse files
committed
moved to new namespace
1 parent 26456ba commit 6dd8c4a

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ Added a method to Laravel response for handling xml response and also converting
44
### Composer Installation
55

66
```php
7-
composer require joker/laravel-xml-repsonse
7+
composer require tartan/laravel-xml-repsonse:"^5.0"
88
```
99

1010
### Integration with Laravel 5.*
1111

1212
for Laravel < 5.6 add to config/app.php
1313

1414
```php
15-
Joker\XmlResponse\XmlResponseServiceProvider::class
15+
Tartan\XmlResponse\XmlResponseServiceProvider::class
1616
```
1717

1818
### Publish
@@ -37,11 +37,11 @@ Route::get('/foo', function () {
3737

3838
## Team
3939

40-
This component is developed by the following person(s) and a bunch of [awesome contributors](https://github.com/thejokercoder/laravel-custom-validator/graphs/contributors).
40+
This component is developed by the following person(s) and a bunch of [awesome contributors](https://github.com/iamtartan/laravel-custom-validator/graphs/contributors).
4141

42-
[![Aboozar Ghaffari](https://avatars1.githubusercontent.com/u/35990482?s=200&v=4)](https://github.com/thejokercoder) |
42+
[![Aboozar Ghaffari](https://avatars1.githubusercontent.com/u/502961?s=130&v=4)](https://github.com/iamtartan) |
4343
--- |
44-
[Aboozar Ghaffari](https://github.com/thejokercoder) |
44+
[Aboozar Ghaffari](https://github.com/iamtartan) |
4545

4646
## Support This Project
4747

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "joker/laravel-xml-response",
2+
"name": "tartan/laravel-xml-response",
33
"description": "Added a method to Laravel response for handling xml response and also converting Eloquent return to XML.",
44
"keywords": ["xml", "laravel", "eloquent", "response"],
55
"type": "library",
@@ -17,7 +17,7 @@
1717
},
1818
"autoload": {
1919
"psr-4": {
20-
"Joker\\XmlResponse\\": "src/XmlResponse"
20+
"Tartan\\XmlResponse\\": "src/XmlResponse"
2121
}
2222
},
2323
"minimum-stability": "stable"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?php
2-
namespace Joker\XmlResponse\Exception;
2+
namespace Tartan\XmlResponse\Exception;
33

44
class XmlResponseException extends \Exception {}

src/XmlResponse/XmlResponse.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?php
22

3-
namespace Joker\XmlResponse;
3+
namespace Tartan\XmlResponse;
44

55
use Illuminate\Support\Facades\Response;
66
use Illuminate\Container\Container;
7-
use Joker\XmlResponse\Exception\XmlResponseException;
7+
use Tartan\XmlResponse\Exception\XmlResponseException;
88

99
/**
1010
* Class XmlResponse

src/XmlResponse/XmlResponseServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Joker\XmlResponse;
3+
namespace Tartan\XmlResponse;
44

55
use Illuminate\Support\Facades\Response;
66
use Illuminate\Support\ServiceProvider;

0 commit comments

Comments
 (0)