Skip to content

Commit 453f63d

Browse files
committed
renaming
1 parent d3cdeef commit 453f63d

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ This tiny PHP class helps you to generating YouTube style hash from an Integer.
88
## Usage
99
### Hash
1010
```php
11-
MerkJS\Crypt::hash(9919)
11+
MerkDEV\Crypt::hash(9919)
1212
```
1313
### UnHash
1414
```php
15-
MerkJS\Crypt::unhash("CKAr6PzmUP")
15+
MerkDEV\Crypt::unhash("CKAr6PzmUP")
1616
```
1717

1818
## Example
19-
* Clone this Repo : `https://github.com/merkjs/simple-php-crypt`
19+
* Clone this Repo : `https://github.com/merkdev/simple-php-crypt`
2020
* Run a local server : `php -S localhost:4321 example/index.php`
2121
* Open it on browser : [http://localhost:4321](http://localhost:4321)
2222

2323
## Install it via Composer
24-
`composer require merkjs/simple-php-crypt`
24+
`composer require merkdev/simple-php-crypt`

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
{
2-
"name": "merkjs/simple-php-crypt",
2+
"name": "merkdev/simple-php-crypt",
33
"description": "Converts an integer to YouTube style (like) crypted string. Simple crypt class for PHP",
44
"keywords": ["crypt", "php", "hash"],
5-
"homepage": "https://www.github.com/merkjs/Simple-PHP-Crypt",
5+
"homepage": "https://www.github.com/merkdev/Simple-PHP-Crypt",
66
"license": "MIT",
77
"authors": [
88
{
99
"name": "Kamer DINC",
10-
"email": "merkjs@aol.com",
11-
"homepage": "https://www.github.com/merkjs"
10+
"email": "kamerdinc@gmail.com",
11+
"homepage": "https://www.github.com/merkdev"
1212
}
1313
],
1414
"support": {
15-
"source": "https://github.com/merkjs/simple-php-crypt",
16-
"issues": "https://github.com/merkjs/simple-php-crypt/issues"
15+
"source": "https://github.com/merkdev/simple-php-crypt",
16+
"issues": "https://github.com/merkdev/simple-php-crypt/issues"
1717
},
1818
"require": {
1919
"php": ">=5.6.0"
2020
},
2121
"autoload": {
2222
"psr-4": {
23-
"MerkJS\\": "src/"
23+
"MerkDEV\\": "src/"
2424
}
2525
}
2626
}

example/index.php

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

3-
use MerkJS\Crypt;
3+
use MerkDEV\Crypt;
44

55
require dirname(__DIR__).'/src/crypt.php';
66

src/Crypt.php

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

3-
namespace MerkJS;
3+
namespace MerkDEV;
44

55
class Crypt {
66

0 commit comments

Comments
 (0)