|
1 |
| -## PHP Base62x Library |
| 1 | +# PHP Base62x Library |
2 | 2 |
|
3 | 3 | This library can be used to encode strings in **Base62x** format.
|
4 | 4 |
|
5 |
| -The reference implementation of Base62x has been taken by this repository: https://github.com/wadelau/Base62x |
| 5 | +The reference implementation of _Base62x_ has been taken by this repository: [https://github.com/wadelau/Base62x](https://github.com/wadelau/Base62x) |
6 | 6 |
|
7 | 7 | Stating the original author repository, **Base62x is an alternative approach to Base 64 without symbols in output.**
|
8 | 8 |
|
9 |
| -Base62x is an **non-symbolic Base64 encoding scheme**. It can be used safely in computer file systems, programming languages for data exchange, internet communication systems, etc, and it is an ideal substitute and successor of many variants of Base64 encoding scheme. |
| 9 | +_Base62x_ is an **non-symbolic Base64 encoding scheme**. It can be used safely in computer file systems, programming languages for data exchange, internet communication systems, etc, and it is an ideal substitute and successor of many variants of Base64 encoding scheme. |
10 | 10 |
|
11 | 11 | This repository is a wrapper around **wadelau/Base62x** repository, and is specifically crafted for PHP, with composer support.
|
12 | 12 |
|
13 |
| -It can be integrated into any framework, like Laravel, to enable Base62x support out of the box. |
| 13 | +It can be integrated into any framework, like Laravel, to enable _Base62x_ support out of the box. |
14 | 14 |
|
15 | 15 | [](https://packagist.org/packages/mfonte/base62x)
|
16 | 16 | [](https://packagist.org/packages/mfonte/base62x)
|
17 | 17 | [](https://scrutinizer-ci.com/g/mauriziofonte/php-base62x/)
|
18 | 18 | [](https://scrutinizer-ci.com/g/mauriziofonte/php-base62x/)
|
19 | 19 |
|
20 |
| -### Installation |
| 20 | +## Installation |
21 | 21 |
|
22 | 22 | Simple enough.
|
23 | 23 |
|
24 | 24 | `composer require mfonte/base62x`
|
25 | 25 |
|
26 |
| -Required **PHP >= 7.1** and php's **gzip** support for gzip compression. |
| 26 | +Required environment: |
| 27 | + |
| 28 | +1. PHP **>= 7.2** |
| 29 | +2. `gzip` module, for gzip compression support |
| 30 | +3. `openssl` module, for encryption support |
27 | 31 |
|
28 | 32 | ### Use cases
|
29 | 33 |
|
|
0 commit comments