We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0d158a commit 12e7b6fCopy full SHA for 12e7b6f
readme.md
@@ -52,6 +52,15 @@ echo $encoder->encode("foo");
52
echo $encoder->decode("MZXW6===");
53
```
54
55
+#### Base 64
56
+
57
+```php
58
+$encoder = new Jocic\Encoders\Base\Base64();
59
60
+echo $encoder->encode("foo");
61
+echo $encoder->decode("Zm9v");
62
+```
63
64
## Installation
65
66
There's two ways you can add **Encoders** library to your project:
@@ -60,7 +69,7 @@ There's two ways you can add **Encoders** library to your project:
69
* Via Composer, by executing the command below
70
71
```bash
-composer require jocic/encoders dev-master
72
+composer require jocic/encoders 1.0.0
73
74
75
## Tests
0 commit comments