diff --git a/content/tutorials/get-started/get-started-using-php.md b/content/tutorials/get-started/get-started-using-php.md index 843bde3ee5..9cdec53fc8 100644 --- a/content/tutorials/get-started/get-started-using-php.md +++ b/content/tutorials/get-started/get-started-using-php.md @@ -30,13 +30,12 @@ In this tutorial, you'll learn: ## Requirements -* `XRPL_PHP` requires PHP 8.1. -* Recommended for increased performance are the PHP extensions [GMP](http://php.net/manual/en/book.gmp.php) and / or [BCMATH](https://www.php.net/manual/de/book.bc.php) - - +* `XRPL_PHP` requires PHP 8.1 and the PHP extension [GMP](http://php.net/manual/en/book.gmp.php). +* Recommended for increased performance is the PHP extensions [BCMATH](https://www.php.net/manual/de/book.bc.php) + ## Installation -`XRPL_PHP` can be installed via [Composer](http://getcomposer.org/doc/00-intro.html): +`XRPL_PHP` can be installed via [Composer](https://getcomposer.org/doc/00-intro.md): ```console composer require hardcastle/xrpl_php @@ -56,7 +55,7 @@ Here are the basic steps you'll need to cover for almost any XRP Ledger project: ### 1. Connect to the XRP Ledger -To make queries and submit transactions, you need to connect to the XRP Ledger. To do this with `XRPL_PHP`, you can use the [`JsonRpcClient`](hhttps://alexanderbuzz.github.io/xrpl-php-docs/client.html): +To make queries and submit transactions, you need to connect to the XRP Ledger. To do this with `XRPL_PHP`, you can use the [`JsonRpcClient`](https://alexanderbuzz.github.io/xrpl-php-docs/client.html): ```php