11# clue/reactphp-zenity
22
3- [ ![ CI status] ( https://github.com/clue/reactphp-zenity/workflows/CI /badge.svg )] ( https://github.com/clue/reactphp-zenity/actions )
3+ [ ![ CI status] ( https://github.com/clue/reactphp-zenity/actions/ workflows/ci.yml /badge.svg )] ( https://github.com/clue/reactphp-zenity/actions )
44[ ![ installs on Packagist] ( https://img.shields.io/packagist/dt/clue/zenity-react?color=blue&label=installs%20on%20Packagist )] ( https://packagist.org/packages/clue/zenity-react )
55
66Zenity allows you to build graphical desktop (GUI) applications in PHP, built on top of [ ReactPHP] ( https://reactphp.org/ ) .
@@ -292,29 +292,29 @@ $builder->warning($text, $title = null);
292292
293293## Install
294294
295- The recommended way to install this library is [ through Composer] ( https://getcomposer.org ) .
295+ The recommended way to install this library is [ through Composer] ( https://getcomposer.org/ ) .
296296[ New to Composer?] ( https://getcomposer.org/doc/00-intro.md )
297297
298298This will install the latest supported version:
299299
300300``` bash
301- $ composer require clue/zenity-react:^0.4.4
301+ composer require clue/zenity-react:^0.4.4
302302```
303303
304304See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
305305
306306This project aims to run on any platform and thus does not require any PHP
307307extensions and supports running on legacy PHP 5.3 through current PHP 8+ and
308308HHVM.
309- It's * highly recommended to use PHP 7+ * for this project.
309+ It's * highly recommended to use the latest supported PHP version * for this project.
310310
311311Obviously, this library requires the Zenity binary itself.
312312Zenity already ships with Ubuntu-based distributions and should not require any installation there.
313313On Debian- and Ubuntu-based distributions you can make sure it's installed like this:
314314
315315``` bash
316316# usually not required
317- $ sudo apt-get install zenity
317+ sudo apt-get install zenity
318318```
319319
320320Otherwise you may have to install Zenity yourself (use your favorite search engine, download the appropriate realease tarball or compile from soure).
@@ -332,16 +332,16 @@ $launcher->setBin('/path/to/zenity');
332332## Tests
333333
334334To run the test suite, you first need to clone this repo and then install all
335- dependencies [ through Composer] ( https://getcomposer.org ) :
335+ dependencies [ through Composer] ( https://getcomposer.org/ ) :
336336
337337``` bash
338- $ composer install
338+ composer install
339339```
340340
341341To run the test suite, go to the project root and run:
342342
343343``` bash
344- $ php vendor/bin/phpunit
344+ php vendor/bin/phpunit
345345```
346346
347347## License
0 commit comments