Skip to content

Commit b1b9dc2

Browse files
committed
moved to new namespace
1 parent 17ea100 commit b1b9dc2

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Restart your webserver - done.
3131
### Composer installation
3232

3333
```php
34-
composer require joker/laravel-jalali-date
34+
composer require tartan/laravel-jalali-date
3535
```
3636

3737
### Integration with Laravel 5.*
@@ -40,7 +40,7 @@ Add Zaman to app aliases in config/app.php file
4040

4141
```php
4242
// aliases
43-
'Zaman' => Joker\Facades\Zaman::class,
43+
'Zaman' => Tartan\Zaman\Facades\Zaman::class,
4444
```
4545

4646
### Usage samples
@@ -76,9 +76,9 @@ echo Zaman::momentEn(1494334506);
7676

7777
## Team
7878

79-
This component is developed by the following person(s) and a bunch of [awesome contributors](https://github.com/thejokercoder/laravel-jalali-date/graphs/contributors).
79+
This component is developed by the following person(s) and a bunch of [awesome contributors](https://github.com/iamtartan/laravel-jalali-date/graphs/contributors).
8080

81-
[![Aboozar Ghaffari](https://avatars1.githubusercontent.com/u/35990482?s=200&v=4)](https://github.com/thejokercoder) |
81+
[![Aboozar Ghaffari](https://avatars1.githubusercontent.com/u/502961?s=130&v=4)](https://github.com/iamtartan) |
8282
--- |
8383
[Aboozar Ghaffari](https://github.com/thejokercoder) |
8484

@@ -89,4 +89,4 @@ This component is developed by the following person(s) and a bunch of [awesome c
8989

9090
## License
9191

92-
The Laravel Jalali Datetime is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT)
92+
The Laravel Jalali Datetime is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT)

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
},
1818
"autoload": {
1919
"psr-4": {
20-
"Joker\\Zaman\\": "src/Zaman"
20+
"Tartan\\Zaman\\": "src/Zaman"
2121
}
2222
},
2323
"minimum-stability": "stable"

src/Zaman/Facades/Zaman.php

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

3-
namespace Joker\Zaman\Facades;
3+
namespace Tartan\Zaman\Facades;
44

55
use Illuminate\Support\Facades\Facade;
66

77
/**
88
* Class Zaman
9-
* @package Joker\Zaman
9+
* @package Tartan\Zaman
1010
* @author Aboozar Ghaffari <aboozar.ghf@gmail.com>
1111
*/
1212
class Zaman extends Facade
@@ -18,6 +18,6 @@ class Zaman extends Facade
1818
*/
1919
protected static function getFacadeAccessor ()
2020
{
21-
return 'Joker\Zaman\Helpers\PersianDateHelper';
21+
return 'Tartan\Zaman\Helpers\PersianDateHelper';
2222
}
2323
}

src/Zaman/Helpers/PersianDateHelper.php

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

3-
namespace Joker\Zaman\Helpers;
3+
namespace Tartan\Zaman\Helpers;
44

5-
use Joker\Zaman\IntlDatetime;
5+
use Tartan\Zaman\IntlDatetime;
66

77
/**
88
* Class PersianDateHelper
9-
* @package Joker\Zaman
9+
* @package Tartan\Zaman
1010
* @author Aboozar Ghaffari <aboozar.ghf@gmail.com>
1111
*/
1212
class PersianDateHelper

src/Zaman/IntlDatetime.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
* pattern syntax for formatting and parsing date strings.
88
* (@link http://userguide.icu-project.org/formatparse/datetime)
99
*
10-
* @copyright Copyright 2010, Joker (https://github.com/thejokercoder/)
10+
* @copyright Copyright 2010, Tartan (https://github.com/iamtartan/)
1111
* @license GNU General Public License 3.0 (http://www.gnu.org/licenses/gpl.html)
12-
* @package Joker\Zaman
12+
* @package Tartan\Zaman
1313
* @author Aboozar Ghaffari <aboozar.ghf@gmail.com>
1414
*/
1515

16-
namespace Joker\Zaman;
16+
namespace Tartan\Zaman;
1717

1818
use NumberFormatter;
1919
use DateTime;

0 commit comments

Comments
 (0)