Skip to content

Commit 98a0744

Browse files
committed
Updated to 1.1.6 version
1 parent fd2372e commit 98a0744

File tree

9 files changed

+417
-456
lines changed

9 files changed

+417
-456
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# CHANGELOG
22

3+
## 1.1.6 - 2017-10-27
4+
5+
* Implemented `PSR-4 autoloader standard` from all library files.
6+
7+
* Implemented `PSR-2 coding standard` from all library PHP files.
8+
9+
* Implemented `PHPCS` to ensure that PHP code complies with `PSR2` code standards.
10+
11+
* Implemented `Codacy` to automates code reviews and monitors code quality over time.
12+
13+
* Implemented `Codecov` to coverage reports.
14+
15+
* Added `ErrorHandler/phpcs.ruleset.xml` file.
16+
17+
* Deleted `ErrorHandler/src/bootstrap.php` file.
18+
19+
* Deleted `ErrorHandler/tests/bootstrap.php` file.
20+
21+
* Deleted `ErrorHandler/vendor` folder.
22+
23+
* Changed `Josantonius\ErrorHandler\Test\ErrorHandlerTest` class to `Josantonius\ErrorHandler\ErrorHandlerTest` class.
24+
325
## 1.1.5 - 2017-09-13
426

527
* Unit tests supported by `PHPUnit` were added.

composer.json

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "josantonius/errorhandler",
3-
"version": "1.1.5",
3+
"version": "1.1.6",
44
"type": "library",
55
"description": "PHP library for handling exceptions and errors.",
66
"keywords": [
@@ -35,19 +35,27 @@
3535
"php": "^5.6 || ^7.0"
3636
},
3737
"require-dev": {
38-
"phpunit/phpunit": "5.7.*"
38+
"phpunit/phpunit": "5.7.*",
39+
"squizlabs/php_codesniffer": "3.*"
3940
},
4041
"autoload": {
4142
"psr-4": {
4243
"Josantonius\\ErrorHandler\\": "src/ErrorHandler/"
4344
}
4445
},
46+
"autoload-dev": {
47+
"psr-4": {
48+
"Josantonius\\DataType\\": "tests/"
49+
}
50+
},
4551
"extra": {
4652
"branch-alias": {
4753
"dev-master": "1.0-dev"
4854
}
4955
},
5056
"scripts": {
51-
"test": "phpunit"
57+
"phpunit": "vendor/bin/phpunit --colors=always;",
58+
"phpcs": "vendor/bin/phpcs --standard=phpcs.ruleset.xml $(find . -name '*.php');",
59+
"tests": "clear && vendor/bin/phpcs --standard=phpcs.ruleset.xml $(find . -name '*.php') && vendor/bin/phpunit --colors=always;"
5260
}
5361
}

0 commit comments

Comments
 (0)