Skip to content
This repository was archived by the owner on Aug 18, 2022. It is now read-only.

Commit e292f01

Browse files
committed
Updated to 1.1.3 version
1 parent 28a5ece commit e292f01

File tree

1,374 files changed

+462
-119141
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,374 files changed

+462
-119141
lines changed

.gitattributes

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/tests export-ignore
22
/resources export-ignore
3-
/src/bootstrap.php export-ignore
43
/vendor export-ignore
54
/node_modules export-ignore
65
.gitattributes export-ignore
@@ -16,4 +15,5 @@ contributors.txt export-ignore
1615
README.md export-ignore
1716
README-ES.md export-ignore
1817
.editorconfig export-ignore
19-
composer.lock export-ignore
18+
composer.lock export-ignore
19+
phpcs.ruleset.xml export-ignore

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ composer.phar
33
composer.lock
44
package-lock.json
55
composer-test.lock
6+
vendor/
67
build/artifacts/
78
artifacts/
89
node_modules/

.travis.yml

Lines changed: 23 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,42 @@ sudo: false
44

55
dist: trusty
66

7+
branches:
8+
only:
9+
- master
10+
711
git:
812
depth: 5
9-
13+
1014
php:
11-
- hhvm
1215
- 5.6
1316
- 7.0
1417
- 7.1
18+
- 7.2
19+
- hhvm
1520
- nightly
1621

1722
matrix:
1823
fast_finish: true
24+
include:
25+
- php: 7.1
26+
env: PHPCS=PSR2
27+
1928
allow_failures:
2029
- php: nightly
2130

2231
before_script:
23-
- composer self-update
24-
- composer install
32+
- export PATH="./vendor/bin:$PATH"
33+
- travis_retry composer self-update
34+
- travis_retry composer install --no-interaction --prefer-source --dev
2535

2636
script:
27-
- composer test
37+
- phpunit
38+
- |
39+
if [[ "$PHPCS" ]] ; then
40+
phpcs --standard=phpcs.ruleset.xml $(find . -name '*.php')
41+
fi
42+
phpunit --coverage-clover=coverage.xml
43+
44+
after_success:
45+
- bash <(curl -s https://codecov.io/bash)

CHANGELOG.md

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

3+
## 1.1.3 - 2017-11-02
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 `Logger/phpcs.ruleset.xml` file.
16+
17+
* Deleted `Logger/src/bootstrap.php` file.
18+
19+
* Deleted `Logger/tests/bootstrap.php` file.
20+
21+
* Deleted `Logger/vendor` folder.
22+
23+
* Changed `Josantonius\Logger\Test\LoggerTest` class to `Josantonius\Logger\LoggerTest` class.
24+
25+
326
## 1.1.2 - 2017-10-16
427

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

0 commit comments

Comments
 (0)