Skip to content

Commit

Permalink
Merge pull request #14 from lecano/dev
Browse files Browse the repository at this point in the history
Update installation instructions for PHP 8.2 support
  • Loading branch information
lecano authored Oct 5, 2024
2 parents e641aae + a5d8457 commit bc96673
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,25 @@

Librería PHP para convertir un número a letras, palabras o texto.

## Instalar
## Introducción

PHP 7.2+ y 8.0+:
`numero-a-letras` es una librería PHP que permite convertir números a su representación en palabras. Es útil para generar textos como "mil doscientos treinta y cuatro" a partir del número 1234.

## Instalación

### PHP ^8.2:

```bash
composer require luecano/numero-a-letras "^4.0"
```

PHP 7.2 a 8.1:

```bash
composer require luecano/numero-a-letras "^3.0"
```

PHP 5.6, 7.0 y 7.1:
PHP 5.6 a 7.1:

```bash
composer require luecano/numero-a-letras "^2.0"
Expand All @@ -30,7 +40,7 @@ Agregar referencia a librería.

```php

require 'vendor/autoload.php';
require 'vendor/autoload.php'; // Línea no necesaria si se usa frameworks como Laravel
use Luecano\NumeroALetras\NumeroALetras;
```

Expand Down

0 comments on commit bc96673

Please sign in to comment.