Skip to content

Commit 7599f8b

Browse files
committed
1 parent 0112e33 commit 7599f8b

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

README.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# codemasher/php-qrcode
1+
# chillerlan/php-qrcode
22

33
A PHP7 QR Code library based on the [implementation](https://github.com/kazuhikoarase/qrcode-generator) by [Kazuhiko Arase](https://github.com/kazuhikoarase),
44
namespaced, cleaned up, improved and other stuff.
@@ -14,16 +14,16 @@ namespaced, cleaned up, improved and other stuff.
1414

1515
[packagist-badge]: https://img.shields.io/packagist/v/chillerlan/php-qrcode.svg?style=flat-square
1616
[packagist]: https://packagist.org/packages/chillerlan/php-qrcode
17-
[license-badge]: https://img.shields.io/github/license/codemasher/php-qrcode.svg?style=flat-square
18-
[license]: https://github.com/codemasher/php-qrcode/blob/master/LICENSE
19-
[travis-badge]: https://img.shields.io/travis/codemasher/php-qrcode.svg?style=flat-square
20-
[travis]: https://travis-ci.org/codemasher/php-qrcode
21-
[coverage-badge]: https://img.shields.io/codecov/c/github/codemasher/php-qrcode.svg?style=flat-square
22-
[coverage]: https://codecov.io/github/codemasher/php-qrcode
23-
[scrutinizer-badge]: https://img.shields.io/scrutinizer/g/codemasher/php-qrcode.svg?style=flat-square
24-
[scrutinizer]: https://scrutinizer-ci.com/g/codemasher/php-qrcode
25-
[gemnasium-badge]: https://img.shields.io/gemnasium/codemasher/php-qrcode.svg?style=flat-square
26-
[gemnasium]: https://gemnasium.com/github.com/codemasher/php-qrcode
17+
[license-badge]: https://img.shields.io/github/license/chillerlan/php-qrcode.svg?style=flat-square
18+
[license]: https://github.com/chillerlan/php-qrcode/blob/master/LICENSE
19+
[travis-badge]: https://img.shields.io/travis/chillerlan/php-qrcode.svg?style=flat-square
20+
[travis]: https://travis-ci.org/chillerlan/php-qrcode
21+
[coverage-badge]: https://img.shields.io/codecov/c/github/chillerlan/php-qrcode.svg?style=flat-square
22+
[coverage]: https://codecov.io/github/chillerlan/php-qrcode
23+
[scrutinizer-badge]: https://img.shields.io/scrutinizer/g/chillerlan/php-qrcode.svg?style=flat-square
24+
[scrutinizer]: https://scrutinizer-ci.com/g/chillerlan/php-qrcode
25+
[gemnasium-badge]: https://img.shields.io/gemnasium/chillerlan/php-qrcode.svg?style=flat-square
26+
[gemnasium]: https://gemnasium.com/github.com/chillerlan/php-qrcode
2727
[downloads-badge]: https://img.shields.io/packagist/dt/chillerlan/php-qrcode.svg?style=flat-square
2828
[downloads]: https://packagist.org/packages/chillerlan/php-qrcode/stats
2929
[donate-badge]: https://img.shields.io/badge/donate-paypal-ff33aa.svg?style=flat-square
@@ -45,8 +45,8 @@ namespaced, cleaned up, improved and other stuff.
4545
```
4646

4747
#### Manual installation
48-
Download the desired version of the package from [master](https://github.com/codemasher/php-qrcode/archive/master.zip) or
49-
[release](https://github.com/codemasher/php-qrcode/releases) and extract the contents to your project folder. After that:
48+
Download the desired version of the package from [master](https://github.com/chillerlan/php-qrcode/archive/master.zip) or
49+
[release](https://github.com/chillerlan/php-qrcode/releases) and extract the contents to your project folder. After that:
5050
- run `composer install` to install the required dependencies and generate `/vendor/autoload.php`.
5151
- if you use a custom autoloader, point the namespace `chillerlan\QRCode` to the folder `src` of the package
5252

@@ -78,8 +78,8 @@ echo '<img src="'.(new QRCode)->render($data).'" />';
7878
```
7979

8080
<p align="center">
81-
<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">
8383
</p>
8484

8585
Wait, what was that? Please again, slower!
@@ -136,7 +136,7 @@ foreach($matrix->matrix() as $y => $row){
136136
}
137137
```
138138

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.
140140

141141
#### Custom module values
142142
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 = [
209209
Combined with a custom output interface and your imagination you can create some cool effects that way!
210210

211211
#### 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).
213213

214214
```php
215215
class MyCustomOutput extends QROutputAbstract{
@@ -276,7 +276,7 @@ $qrOutputInterface->dump();
276276
```
277277

278278
#### 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
280280
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*
281281
```php
282282
use chillerlan\QRCode\{QRCode, QROptions, Traits\QRAuthenticator};

0 commit comments

Comments
 (0)