Fixed typos, composer link and requirements description

This commit is contained in:
AlexanderBuzz
2023-11-21 14:14:35 +01:00
parent 06b79a1b4d
commit dc8adb116d

View File

@@ -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
<?php