Skip to content

Commit 4067a15

Browse files
authored
fixed ci settings (#4)
* wip * patch for php7 * added ignore * changed travis settings * added styleci setting * miss configure * drop hhvm support * for cs * fixed codacy cs tests * fixer * remove cs fixer * update php-coveralls * for coveralls
1 parent 15a124f commit 4067a15

3 files changed

Lines changed: 11 additions & 3 deletions

File tree

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ before_script:
1313
- composer install --prefer-dist --no-interaction
1414
script:
1515
- chmod -R 777 tests/build
16-
- ./vendor/bin/phpunit --coverage-clover tests/build/clover.xml
16+
- ./vendor/bin/phpunit --coverage-clover tests/logs/clover.xml
1717
after_script:
18-
- if [[ ${TRAVIS_PHP_VERSION:0:3} == "7.0" ]]; then php vendor/bin/coveralls -v; fi
18+
- if [[ ${TRAVIS_PHP_VERSION:0:3} == "7.0" ]]; then php ./vendor/bin/php-coveralls -v; fi

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,11 @@ ValueObjects
1616
A PHP library/collection of classes aimed to help developers using and undestanding immutable objects.
1717

1818
This is fork of the educational package nicolopignatelli/valueobjects that aims to provide more functionality for basic tasks and act as a object oriented wrapper for PHP types.
19+
20+
# Install
21+
22+
required >= PHP 7.0
23+
24+
```bash
25+
$ composer require ytake/valueobjects
26+
```

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
},
2424
"require-dev": {
2525
"phpunit/phpunit": "^6.5.8",
26-
"satooshi/php-coveralls": "*",
26+
"php-coveralls/php-coveralls": "^2.1.0",
2727
"phpmd/phpmd": "@stable",
2828
"squizlabs/php_codesniffer": "~2.7",
2929
"sebastian/phpcpd": "*",

0 commit comments

Comments
 (0)