Skip to content

Commit

Permalink
Updated to 1.1.6 version
Browse files Browse the repository at this point in the history
  • Loading branch information
josantonius committed Nov 3, 2017
1 parent eb12661 commit 7c4ccbd
Show file tree
Hide file tree
Showing 1,364 changed files with 956 additions and 118,481 deletions.
3 changes: 1 addition & 2 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
/tests export-ignore
/src/bootstrap.php export-ignore
/vendor export-ignore
.gitattributes export-ignore
.gitignore export-ignore
_config.yml export-ignore
Expand All @@ -10,6 +8,7 @@ phpunit.xml.dist export-ignore
CONDUCT.md export-ignore
contributors.txt export-ignore
README.md export-ignore
phpcs.ruleset.xml export-ignore
README-ES.md export-ignore
.editorconfig export-ignore
composer.lock export-ignore
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ composer.phar
composer.lock
composer-test.lock
build/artifacts/
artifacts/
vendor/
docs/_build
docs/*.pyc
.git*/
Expand Down
25 changes: 21 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,42 @@ sudo: false

dist: trusty

branches:
only:
- master

git:
depth: 5

php:
- 5.6
- 7.0
- 7.1
- 7.2
- hhvm
- nightly

matrix:
fast_finish: true
include:
- php: 7.1
env: PHPCS=PSR2

allow_failures:
- php: nightly
- php: hhvm

before_script:
- composer self-update
- composer install
- export PATH="./vendor/bin:$PATH"
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-source --dev

script:
- composer test
- phpunit
- |
if [[ "$PHPCS" ]] ; then
phpcs --standard=phpcs.ruleset.xml $(find . -name '*.php')
fi
phpunit --coverage-clover=coverage.xml
after_success:
- bash <(curl -s https://codecov.io/bash)
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# CHANGELOG

## 1.1.6 - 2017-11-02

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

* Implemented `PSR-2 coding standard` from all library PHP files.

* Implemented `PHPCS` to ensure that PHP code complies with `PSR2` code standards.

* Implemented `Codacy` to automates code reviews and monitors code quality over time.

* Implemented `Codecov` to coverage reports.

* Added `Url/phpcs.ruleset.xml` file.

* Deleted `Url/src/bootstrap.php` file.

* Deleted `Url/tests/bootstrap.php` file.

* Deleted `Url/vendor` folder.

* Changed `Josantonius\Url\Test\UrlTest` class to `Josantonius\Url\UrlTest` class.

## 1.1.5 - 2017-09-17

* Unit tests supported by `PHPUnit` were added.
Expand Down
Loading

0 comments on commit 7c4ccbd

Please sign in to comment.