Skip to content

Commit 3b83252

Browse files
committed
Update domain
1 parent dbe5c3a commit 3b83252

14 files changed

+25
-25
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) Vincent Klaiber <hello@vinkla.com>
3+
Copyright (c) Vincent Klaiber <hello@doubledip.se>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
66

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,4 +133,4 @@ There are other classes in this package that are not documented here. This is be
133133

134134
## License
135135

136-
[MIT](LICENSE) © [Vincent Klaiber](https://vinkla.com)
136+
[MIT](LICENSE) © [Vincent Klaiber](https://doubledip.se)

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
"authors": [
1818
{
1919
"name": "Vincent Klaiber",
20-
"email": "hello@vinkla.com",
21-
"homepage": "https://vinkla.com"
20+
"email": "hello@doubledip.se",
21+
"homepage": "https://doubledip.se"
2222
}
2323
],
2424
"require": {

config/hashids.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/*
44
* This file is part of Laravel Hashids.
55
*
6-
* (c) Vincent Klaiber <hello@vinkla.com>
6+
* (c) Vincent Klaiber <hello@doubledip.se>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

src/Facades/Hashids.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/*
44
* This file is part of Laravel Hashids.
55
*
6-
* (c) Vincent Klaiber <hello@vinkla.com>
6+
* (c) Vincent Klaiber <hello@doubledip.se>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -18,7 +18,7 @@
1818
/**
1919
* This is the Hashids facade class.
2020
*
21-
* @author Vincent Klaiber <hello@vinkla.com>
21+
* @author Vincent Klaiber <hello@doubledip.se>
2222
*
2323
* @method static string encode(mixed ...$numbers) Encode parameters to generate a hash.
2424
* @method static array decode(string $hash) Decode a hash to the original parameter values.

src/HashidsFactory.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/*
44
* This file is part of Laravel Hashids.
55
*
6-
* (c) Vincent Klaiber <hello@vinkla.com>
6+
* (c) Vincent Klaiber <hello@doubledip.se>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -18,7 +18,7 @@
1818
/**
1919
* This is the Hashids factory class.
2020
*
21-
* @author Vincent Klaiber <hello@vinkla.com>
21+
* @author Vincent Klaiber <hello@doubledip.se>
2222
*/
2323
class HashidsFactory
2424
{

src/HashidsManager.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/*
44
* This file is part of Laravel Hashids.
55
*
6-
* (c) Vincent Klaiber <hello@vinkla.com>
6+
* (c) Vincent Klaiber <hello@doubledip.se>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -25,7 +25,7 @@
2525
* @method string encodeHex(string $str) Encode hexadecimal values and generate a hash string.
2626
* @method string decodeHex(string $hash) Decode a hexadecimal hash.
2727
*
28-
* @author Vincent Klaiber <hello@vinkla.com>
28+
* @author Vincent Klaiber <hello@doubledip.se>
2929
*/
3030
class HashidsManager extends AbstractManager
3131
{

src/HashidsServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/*
44
* This file is part of Laravel Hashids.
55
*
6-
* (c) Vincent Klaiber <hello@vinkla.com>
6+
* (c) Vincent Klaiber <hello@doubledip.se>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -22,7 +22,7 @@
2222
/**
2323
* This is the Hashids service provider class.
2424
*
25-
* @author Vincent Klaiber <hello@vinkla.com>
25+
* @author Vincent Klaiber <hello@doubledip.se>
2626
*/
2727
class HashidsServiceProvider extends ServiceProvider
2828
{

tests/AbstractTestCase.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/*
44
* This file is part of Laravel Hashids.
55
*
6-
* (c) Vincent Klaiber <hello@vinkla.com>
6+
* (c) Vincent Klaiber <hello@doubledip.se>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -19,7 +19,7 @@
1919
/**
2020
* This is the abstract test class.
2121
*
22-
* @author Vincent Klaiber <hello@vinkla.com>
22+
* @author Vincent Klaiber <hello@doubledip.se>
2323
*/
2424
abstract class AbstractTestCase extends AbstractPackageTestCase
2525
{

tests/AnalysisTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/*
44
* This file is part of Laravel Hashids.
55
*
6-
* (c) Vincent Klaiber <hello@vinkla.com>
6+
* (c) Vincent Klaiber <hello@doubledip.se>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -20,7 +20,7 @@
2020
/**
2121
* This is the analysis test class.
2222
*
23-
* @author Vincent Klaiber <hello@vinkla.com>
23+
* @author Vincent Klaiber <hello@doubledip.se>
2424
*/
2525
class AnalysisTest extends TestCase
2626
{

tests/Facades/HashidsTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/*
44
* This file is part of Laravel Hashids.
55
*
6-
* (c) Vincent Klaiber <hello@vinkla.com>
6+
* (c) Vincent Klaiber <hello@doubledip.se>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -21,7 +21,7 @@
2121
/**
2222
* This is the Hashids facade test class.
2323
*
24-
* @author Vincent Klaiber <hello@vinkla.com>
24+
* @author Vincent Klaiber <hello@doubledip.se>
2525
*/
2626
class HashidsTest extends AbstractTestCase
2727
{

tests/HashidsFactoryTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/*
44
* This file is part of Laravel Hashids.
55
*
6-
* (c) Vincent Klaiber <hello@vinkla.com>
6+
* (c) Vincent Klaiber <hello@doubledip.se>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -19,7 +19,7 @@
1919
/**
2020
* This is the Hashids factory test class.
2121
*
22-
* @author Vincent Klaiber <hello@vinkla.com>
22+
* @author Vincent Klaiber <hello@doubledip.se>
2323
*/
2424
class HashidsFactoryTest extends AbstractTestCase
2525
{

tests/HashidsManagerTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/*
44
* This file is part of Laravel Hashids.
55
*
6-
* (c) Vincent Klaiber <hello@vinkla.com>
6+
* (c) Vincent Klaiber <hello@doubledip.se>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -23,7 +23,7 @@
2323
/**
2424
* This is the Hashids manager test class.
2525
*
26-
* @author Vincent Klaiber <hello@vinkla.com>
26+
* @author Vincent Klaiber <hello@doubledip.se>
2727
*/
2828
class HashidsManagerTest extends AbstractTestBenchTestCase
2929
{

tests/ServiceProviderTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/*
44
* This file is part of Laravel Hashids.
55
*
6-
* (c) Vincent Klaiber <hello@vinkla.com>
6+
* (c) Vincent Klaiber <hello@doubledip.se>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -21,7 +21,7 @@
2121
/**
2222
* This is the service provider test class.
2323
*
24-
* @author Vincent Klaiber <hello@vinkla.com>
24+
* @author Vincent Klaiber <hello@doubledip.se>
2525
*/
2626
class ServiceProviderTest extends AbstractTestCase
2727
{

0 commit comments

Comments
 (0)