You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18-18Lines changed: 18 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# codemasher/php-qrcode
1
+
# chillerlan/php-qrcode
2
2
3
3
A PHP7 QR Code library based on the [implementation](https://github.com/kazuhikoarase/qrcode-generator) by [Kazuhiko Arase](https://github.com/kazuhikoarase),
4
4
namespaced, cleaned up, improved and other stuff.
@@ -14,16 +14,16 @@ namespaced, cleaned up, improved and other stuff.
<img alt="QR codes are awesome!" src="https://raw.githubusercontent.com/codemasher/php-qrcode/master/examples/example_image.png">
82
-
<img alt="QR codes are awesome!" src="https://raw.githubusercontent.com/codemasher/php-qrcode/master/examples/example_svg.png">
81
+
<img alt="QR codes are awesome!" src="https://raw.githubusercontent.com/chillerlan/php-qrcode/master/examples/example_image.png">
82
+
<img alt="QR codes are awesome!" src="https://raw.githubusercontent.com/chillerlan/php-qrcode/master/examples/example_svg.png">
83
83
</p>
84
84
85
85
Wait, what was that? Please again, slower!
@@ -136,7 +136,7 @@ foreach($matrix->matrix() as $y => $row){
136
136
}
137
137
```
138
138
139
-
Have a look [in this folder](https://github.com/codemasher/php-qrcode/tree/master/examples) for some more usage examples.
139
+
Have a look [in this folder](https://github.com/chillerlan/php-qrcode/tree/master/examples) for some more usage examples.
140
140
141
141
#### Custom module values
142
142
Previous versions of `QRCode` held only boolean matrix values that only allowed to determine whether a module was dark or not. Now you can distinguish between different parts of the matrix, namely the several required patterns from the QR Code specification, and use them in different ways.
@@ -209,7 +209,7 @@ $options->moduleValues = [
209
209
Combined with a custom output interface and your imagination you can create some cool effects that way!
210
210
211
211
#### Custom `QROutputInterface`
212
-
Instead of bloating your code you can simply create your own output interface by extending `QROutputAbstract`. Have a look at the [built-in output modules](https://github.com/codemasher/php-qrcode/tree/master/src/Output).
212
+
Instead of bloating your code you can simply create your own output interface by extending `QROutputAbstract`. Have a look at the [built-in output modules](https://github.com/chillerlan/php-qrcode/tree/master/src/Output).
213
213
214
214
```php
215
215
class MyCustomOutput extends QROutputAbstract{
@@ -276,7 +276,7 @@ $qrOutputInterface->dump();
276
276
```
277
277
278
278
#### Authenticator trait
279
-
This library includes a trait for [codemasher/php-authenticator](https://github.com/codemasher/php-authenticator) that allows
279
+
This library includes a trait for [chillerlan/php-authenticator](https://github.com/chillerlan/php-authenticator) that allows
280
280
to create `otpauth://` QR Codes for use with mobile authenticators - just add `"chillerlan/php-authenticator": "^2.0"` to the `require` section of your *composer.json*
281
281
```php
282
282
use chillerlan\QRCode\{QRCode, QROptions, Traits\QRAuthenticator};
0 commit comments