Skip to content

Commit 991562b

Browse files
authored
Merge pull request #6 from josantonius/release/v2.0.2
Release/v2.0.2
2 parents fc9a970 + 9df36ff commit 991562b

File tree

5 files changed

+22
-17
lines changed

5 files changed

+22
-17
lines changed

.github/lang/es-ES/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ Para manejar excepciones puedes utilizar la biblioteca
3737

3838
## Requisitos
3939

40-
Esta biblioteca es compatible con las versiones de PHP: 8.1.
40+
- Sistema operativo: Linux | Windows.
41+
42+
- Versiones de PHP: 8.1.
4143

4244
## Instalación
4345

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
name: 'PHPUnit (PHP ${{ matrix.php }} - ${{ matrix.system }})'
4444
strategy:
4545
matrix:
46-
system: ['ubuntu-latest']
46+
system: ['ubuntu-latest', 'windows-latest']
4747
php:
4848
- '8.1'
4949
steps:

CHANGELOG.md

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CHANGELOG
22

3-
## [v2.0.2](https://github.com/josantonius/php-error/releases/tag/v2.0.2) (2022-XX-XX)
3+
## [v2.0.2](https://github.com/josantonius/php-error-handler/releases/tag/v2.0.2) (2022-09-29)
44

55
* The notation type in the test function names has been changed from camel to snake case for readability.
66

@@ -10,12 +10,13 @@
1010

1111
* The alignment of the asterisks in the comments has been fixed.
1212

13+
* Tests for Windows have been added.
1314

14-
## [v2.0.1](https://github.com/josantonius/php-error/releases/tag/v2.0.1) (2022-08-11)
15+
## [v2.0.1](https://github.com/josantonius/php-error-handler/releases/tag/v2.0.1) (2022-08-11)
1516

1617
* Documentation was improved.
1718

18-
## [v2.0.0](https://github.com/josantonius/php-error/releases/tag/v2.0.0) (2022-08-10)
19+
## [v2.0.0](https://github.com/josantonius/php-error-handler/releases/tag/v2.0.0) (2022-08-10)
1920

2021
> Version 1.x is considered as deprecated and unsupported.
2122
> In this version (2.x) the library was completely restructured.
@@ -65,21 +66,21 @@ to handle them.
6566
* Deleted `README-ES.MD` file.
6667
* Deleted `.php_cs.dist` file.
6768

68-
## [1.1.8](https://github.com/josantonius/php-error/releases/tag/1.1.8) (2018-01-06)
69+
## [1.1.8](https://github.com/josantonius/php-error-handler/releases/tag/1.1.8) (2018-01-06)
6970

7071
* The tests were fixed.
7172

7273
* Changes in documentation.
7374

74-
## [1.1.7](https://github.com/josantonius/php-error/releases/tag/1.1.7) (2017-11-08)
75+
## [1.1.7](https://github.com/josantonius/php-error-handler/releases/tag/1.1.7) (2017-11-08)
7576

7677
* Implemented `PHP Mess Detector` to detect inconsistencies in code styles.
7778

7879
* Implemented `PHP Code Beautifier and Fixer` to fixing errors automatically.
7980

8081
* Implemented `PHP Coding Standards Fixer` to organize PHP code automatically according to PSR standards.
8182

82-
## [1.1.6](https://github.com/josantonius/php-error/releases/tag/1.1.6) (2017-10-27)
83+
## [1.1.6](https://github.com/josantonius/php-error-handler/releases/tag/1.1.6) (2017-10-27)
8384

8485
* Implemented `PSR-4 autoloader standard` from all library files.
8586

@@ -99,7 +100,7 @@ to handle them.
99100

100101
* Deleted `ErrorHandler/vendor` folder.
101102

102-
## [1.1.5](https://github.com/josantonius/php-error/releases/tag/1.1.5) (2017-09-13)
103+
## [1.1.5](https://github.com/josantonius/php-error-handler/releases/tag/1.1.5) (2017-09-13)
103104

104105
* Unit tests supported by `PHPUnit` were added.
105106

@@ -127,13 +128,13 @@ to handle them.
127128
* Deleted `Josantonius\ErrorHandler\Tests\ErrorHandlerTest->testSetCustomMethod()` method.
128129
* Deleted `Josantonius\ErrorHandler\Tests\ErrorHandlerTest->_customMethodResponse()` method.
129130

130-
## [1.1.4](https://github.com/josantonius/php-error/releases/tag/1.1.4) (2017-07-16)
131+
## [1.1.4](https://github.com/josantonius/php-error-handler/releases/tag/1.1.4) (2017-07-16)
131132

132133
* Deleted `Josantonius\ErrorHandler\Exception\ErrorHandlerException` class.
133134
* Deleted `Josantonius\ErrorHandler\Exception\Exceptions` abstract class.
134135
* Deleted `Josantonius\ErrorHandler\Exception\ErrorHandlerException->__construct()` method.
135136

136-
## [1.1.3](https://github.com/josantonius/php-error/releases/tag/1.1.3) (2017-05-15)
137+
## [1.1.3](https://github.com/josantonius/php-error-handler/releases/tag/1.1.3) (2017-05-15)
137138

138139
* You can now add custom methods to run instead of displaying the default view.
139140

@@ -144,21 +145,21 @@ to handle them.
144145
* Added `Josantonius\ErrorHandler\Tests\ErrorHandlerTest->testSetCustomMethod()` method.
145146
* Added `Josantonius\ErrorHandler\Tests\ErrorHandlerTest->_customMethodResponse()` method.
146147

147-
## [1.1.2](https://github.com/josantonius/php-error/releases/tag/1.1.2) (2017-03-18)
148+
## [1.1.2](https://github.com/josantonius/php-error-handler/releases/tag/1.1.2) (2017-03-18)
148149

149150
* Some files were excluded from download and comments and readme files were updated.
150151

151-
## [1.1.1](https://github.com/josantonius/php-error/releases/tag/1.1.1) (2017-02-21)
152+
## [1.1.1](https://github.com/josantonius/php-error-handler/releases/tag/1.1.1) (2017-02-21)
152153

153154
* Added `Josantonius\ErrorHandler\ErrorHandler->getPreviewCode()` method.
154155
* Deleted `Josantonius\ErrorHandler\ErrorHandler->catchThrowable()` method.
155156
* Deleted `Josantonius\ErrorHandler\ErrorHandler->catchException()` method.
156157

157-
## [1.1.0](https://github.com/josantonius/php-error/releases/tag/1.1.0) (2017-01-30)
158+
## [1.1.0](https://github.com/josantonius/php-error-handler/releases/tag/1.1.0) (2017-01-30)
158159

159160
* Compatible with PHP 5.6 or higher.
160161

161-
## [1.0.0](https://github.com/josantonius/php-error/releases/tag/1.0.0) (2016-12-14)
162+
## [1.0.0](https://github.com/josantonius/php-error-handler/releases/tag/1.0.0) (2016-12-14)
162163

163164
* Compatible only with PHP 7.0 or higher.
164165
In the next versions, the library will be modified to make it compatible with PHP 5.6 or higher.

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ To handle exceptions you can use the
3737

3838
## Requirements
3939

40-
This library is compatible with the PHP versions: 8.1.
40+
- Operating System: Linux | Windows.
41+
42+
- PHP versions: 8.1.
4143

4244
## Installation
4345

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"htmlCoverage": "vendor/bin/phpunit --coverage-html coverage",
5959
"phpcs": "vendor/bin/phpcs --standard=phpcs.xml $(find . -name '*.php');",
6060
"phpmd": "vendor/bin/phpmd src,tests text ./phpmd.xml",
61-
"phpunit": "vendor/bin/phpunit --colors=always;",
61+
"phpunit": "vendor/bin/phpunit",
6262
"tests": [
6363
"clear",
6464
"@phpmd",

0 commit comments

Comments
 (0)