Skip to content

Commit

Permalink
some typo fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
merkdev committed Jul 11, 2019
1 parent 453f63d commit 12d6fd3
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.2
install: composer install
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ This tiny PHP class helps you to generating YouTube style hash from an Integer.
## Usage
### Hash
```php
MerkDEV\Crypt::hash(9919)
MerkDev\Crypt::hash(9919)
```
### UnHash
```php
MerkDEV\Crypt::unhash("CKAr6PzmUP")
MerkDev\Crypt::unhash("CKAr6PzmUP")
```

## Example
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
},
"autoload": {
"psr-4": {
"MerkDEV\\": "src/"
"MerkDev\\": "src/"
}
}
}
2 changes: 1 addition & 1 deletion example/index.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

use MerkDEV\Crypt;
use MerkDev\Crypt;

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

Expand Down
2 changes: 1 addition & 1 deletion src/Crypt.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace MerkDEV;
namespace MerkDev;

class Crypt {

Expand Down

0 comments on commit 12d6fd3

Please sign in to comment.