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

Commit 7169680

Browse files
committed
Updated to 1.1.7 version
1 parent 70c5f33 commit 7169680

1,560 files changed

Lines changed: 2997 additions & 134580 deletions

File tree

Some content is hidden

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

.gitattributes

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
/tests export-ignore
2-
/vendor export-ignore
3-
/src/bootstrap.php export-ignore
42
.gitattributes export-ignore
53
.gitignore export-ignore
64
_config.yml export-ignore
@@ -10,6 +8,7 @@ phpunit.xml.dist export-ignore
108
CONDUCT.md export-ignore
119
contributors.txt export-ignore
1210
README.md export-ignore
11+
phpcs.ruleset.xml export-ignore
1312
README-ES.md export-ignore
1413
.editorconfig export-ignore
1514
composer.lock export-ignore

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ composer.phar
33
composer.lock
44
composer-test.lock
55
build/artifacts/
6-
artifacts/
6+
vendor/
77
docs/_build
88
docs/*.pyc
99
.git*/

.travis.yml

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ sudo: false
44

55
dist: trusty
66

7+
branches:
8+
only:
9+
- master
10+
711
git:
812
depth: 5
913

@@ -20,19 +24,33 @@ php:
2024
- 5.6
2125
- 7.0
2226
- 7.1
27+
- 7.2
2328
- hhvm
2429
- nightly
2530

2631
matrix:
2732
fast_finish: true
33+
include:
34+
- php: 7.1
35+
env: PHPCS=PSR2
36+
2837
allow_failures:
2938
- php: nightly
3039

3140
before_script:
3241
- mysql -e 'CREATE DATABASE IF NOT EXISTS test;'
3342
- mysql -e 'CREATE DATABASE phpunit;'
34-
- composer self-update
35-
- composer install
43+
- export PATH="./vendor/bin:$PATH"
44+
- travis_retry composer self-update
45+
- travis_retry composer install --no-interaction --prefer-source --dev
3646

3747
script:
38-
- composer test
48+
- phpunit
49+
- |
50+
if [[ "$PHPCS" ]] ; then
51+
phpcs --standard=phpcs.ruleset.xml $(find . -name '*.php')
52+
fi
53+
phpunit --coverage-clover=coverage.xml
54+
55+
after_success:
56+
- 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.7 - 2017-10-26
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 `Database/phpcs.ruleset.xml` file.
16+
17+
* Deleted `Database/src/bootstrap.php` file.
18+
19+
* Deleted `Database/tests/bootstrap.php` file.
20+
21+
* Deleted `Database/vendor` folder.
22+
23+
* Changed `Josantonius\Database\Test\` namespace to `Josantonius\Database\` namespace .
24+
25+
326
## 1.1.6 - 2017-09-26
427

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

0 commit comments

Comments
 (0)