From 5b92106e464a8dfa438ba302a597d4aeadf3302b Mon Sep 17 00:00:00 2001 From: "R. Eric Wheeler" Date: Tue, 17 May 2022 09:53:07 -0700 Subject: [PATCH] Update readme --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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);