Update Parsedown to v1.7.3 (security update)
This commit is contained in:
26
vendor/christian-riesen/base32/README.md
vendored
26
vendor/christian-riesen/base32/README.md
vendored
@@ -1,7 +1,7 @@
|
||||
base32
|
||||
======
|
||||
|
||||
Base32 Encoder/Decoder for PHP according to RFC 4648
|
||||
Base32 Encoder/Decoder for PHP according to [RFC 4648](https://tools.ietf.org/html/rfc4648).
|
||||
|
||||
[](http://travis-ci.org/ChristianRiesen/base32)
|
||||
[](http://hhvm.h4cc.de/package/christian-riesen/base32)
|
||||
@@ -15,19 +15,20 @@ Do you like this? Flattr it:
|
||||
Usage
|
||||
-----
|
||||
|
||||
<?php
|
||||
```php
|
||||
<?php
|
||||
|
||||
// Include class or user autoloader
|
||||
use Base32\Base32;
|
||||
// Include class or user autoloader
|
||||
use Base32\Base32;
|
||||
|
||||
$string = 'fooba';
|
||||
$string = 'fooba';
|
||||
|
||||
$encoded = Base32::encode($string);
|
||||
// $encoded contains now 'MZXW6YTB'
|
||||
|
||||
$decoded = Base32::decode($encoded);
|
||||
// $decoded is again 'fooba'
|
||||
$encoded = Base32::encode($string);
|
||||
// $encoded contains now 'MZXW6YTB'
|
||||
|
||||
$decoded = Base32::decode($encoded);
|
||||
// $decoded is again 'fooba'
|
||||
```
|
||||
|
||||
About
|
||||
=====
|
||||
@@ -44,9 +45,9 @@ Have a RFC compliant Base32 encoder and decoder. The implementation could be imp
|
||||
Requirements
|
||||
------------
|
||||
|
||||
PHP 5.3.x+
|
||||
PHP 5.3 to 5.6 or 7.0+
|
||||
|
||||
If you want to run the tests, PHPUnit 3.6 or up is required.
|
||||
If you want to run the tests, PHPUnit 5.0+ or up is required. Tests require PHP 5.6 or 7.0+.
|
||||
|
||||
Author
|
||||
------
|
||||
@@ -57,4 +58,3 @@ Acknowledgements
|
||||
----------------
|
||||
|
||||
Base32 is mostly based on the work of https://github.com/NTICompass/PHP-Base32
|
||||
|
||||
|
||||
Reference in New Issue
Block a user