Skip to content

Commit

Permalink
Merge branch 'development' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
wilsenhc committed Dec 16, 2021
2 parents 8e26d95 + 13d178f commit 21f9d90
Show file tree
Hide file tree
Showing 9 changed files with 354 additions and 250 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest]
php: [8.0, 7.4, 7.3]
php: [7.3, 7.4, 8.0, 8.1]
dependency-version: [prefer-lowest, prefer-stable]

name: PHP${{ matrix.php }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021 Trienlace, C.A
Copyright (c) 2021 Wilsen Hernández

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
15 changes: 7 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
![](https://banners.beyondco.de/Parse%20Contribuyente.png?theme=light&packageManager=composer+require&packageName=trienlace%2Fparse-contribuyente&pattern=circuitBoard&style=style_1&description=A+parser+for+the+SENIAT+Contribuyente+search+page&md=1&showWatermark=0&fontSize=100px&images=https%3A%2F%2Fwww.php.net%2Fimages%2Flogos%2Fnew-php-logo.svg)
![](https://banners.beyondco.de/Parse%20Contribuyente.png?theme=light&packageManager=composer+require&packageName=wilsenhc%2Fparse-contribuyente&pattern=circuitBoard&style=style_1&description=A+parser+for+the+SENIAT+Contribuyente+search+page&md=1&showWatermark=0&fontSize=100px&images=https%3A%2F%2Fwww.php.net%2Fimages%2Flogos%2Fnew-php-logo.svg)

# A Parser for the SENIAT Contribuyente search page

[![Latest Version on Packagist](https://img.shields.io/packagist/v/trienlace/parse-contribuyente.svg?style=flat-square)](https://packagist.org/packages/trienlace/parse-contribuyente)
![Tests](https://github.com/trienlace/parse-contribuyente/actions/workflows/run-tests.yml/badge.svg)
[![Total Downloads](https://img.shields.io/packagist/dt/trienlace/parse-contribuyente.svg?style=flat-square)](https://packagist.org/packages/trienlace/parse-contribuyente)
[![Latest Version on Packagist](https://img.shields.io/packagist/v/wilsenhc/parse-contribuyente.svg?style=flat-square)](https://packagist.org/packages/wilsenhc/parse-contribuyente)
![Tests](https://github.com/wilsenhc/parse-contribuyente/actions/workflows/run-tests.yml/badge.svg)
[![Total Downloads](https://img.shields.io/packagist/dt/wilsenhc/parse-contribuyente.svg?style=flat-square)](https://packagist.org/packages/wilsenhc/parse-contribuyente)

## Installation

You can install the package via composer:

```bash
composer require trienlace/parse-contribuyente
composer require wilsenhc/parse-contribuyente
```

The package will automatically register itself.
Expand All @@ -23,7 +23,7 @@ This validation rule will pass if the RIF value passed in the request is valid.
```php
// in a Controller, Job or View

use Trienlace\ParseContribuyente\ParseContribuyente;
use Wilsenhc\ParseContribuyente\ParseContribuyente;

$body = '<HTML>...</HTML>'

Expand All @@ -44,11 +44,10 @@ Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed re

### Security

If you discover any security related issues, please email seguridad@trienlace.com instead of using the issue tracker.
If you discover any security related issues, please email wilsenforwork@gmail.com instead of using the issue tracker.

## Credits

- [Trienlace, C.A.](https://github.com/trienlace)
- [All Contributors](../../contributors)

## License
Expand Down
16 changes: 12 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
{
"name": "trienlace/parse-contribuyente",
"name": "wilsenhc/parse-contribuyente",
"description": "Herramienta para realizar parsing de los datos de un contribuyente a partir del HTML de respuesta de la página de búsqueda de contribuyentes en SENIAT",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Wilsen Hernández",
"email": "wilsenforwork@gmail.com",
"role": "Developer"
},
{
"name": "Trienlace",
"email": "desarrollo@trienlace.com"
Expand All @@ -12,11 +17,11 @@
"require": {
"php": "^7.3|^8.0",
"paquettg/php-html-parser": "^3.1",
"phpstan/phpstan": "^0.12.93"
"phpstan/phpstan": "1.2"
},
"autoload": {
"psr-4": {
"Trienlace\\ParseContribuyente\\": "src/"
"Wilsenhc\\ParseContribuyente\\": "src/"
}
},
"autoload-dev": {
Expand All @@ -25,6 +30,9 @@
}
},
"require-dev": {
"pestphp/pest": "^1.11"
"pestphp/pest": "^1.21"
},
"replace": {
"trienlace/parse-contribuyente": "1.*"
}
}
Loading

0 comments on commit 21f9d90

Please sign in to comment.