diff --git a/README.md b/README.md index 3c4c622..743d538 100644 --- a/README.md +++ b/README.md @@ -2,15 +2,15 @@ This simply uses the FFI extension to enable _getch and _ungetch in Windows and linux. -[![pipeline status](https://repos.bgemi.net/sikofitt/getch/badges/1.x/pipeline.svg)](https://repos.bgemi.net/sikofitt/getch/-/commits/1.x) -[![coverage report](https://repos.bgemi.net/sikofitt/getch/badges/1.x/coverage.svg)](https://repos.bgemi.net/sikofitt/getch/-/commits/1.x) +[![pipeline status](https://repos.bgemi.net/olive/PHP/getch/badges/1.x/pipeline.svg)](https://repos.bgemi.net/sikofitt/getch/-/commits/1.x) +[![coverage report](https://repos.bgemi.net/olive/PHP/getch/badges/1.x/coverage.svg)](https://repos.bgemi.net/sikofitt/getch/-/commits/1.x) ```shell script -$ composer require sikofitt/getch:dev-master +$ composer require olivebbs/getch ``` ```php - use Sikofitt\Console\Getch; + use Olive\Console\Getch; $g = new Getch($linuxLibrary = null); // can also be a library that implements a function called _getch; // by default uses the bundled Resources/libgetch.so // on windows uses the built in _getch function. @@ -45,7 +45,7 @@ Note that if you want to put a word into the STDIN stack, you need to do it in r There are also helper functions called getch() and ungetch(); ```php -use function Sikofitt\Console\getch; +use function Olive\Console\getch; $ord = getch($linuxLibrary = null); print \chr($ord);