Skip to content

Commit

Permalink
Merge branch '2.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
ifox committed Jul 15, 2020
2 parents 1368709 + e3c99f6 commit 3989282
Show file tree
Hide file tree
Showing 351 changed files with 12,965 additions and 5,162 deletions.
10 changes: 8 additions & 2 deletions .travis.yml
Expand Up @@ -32,11 +32,17 @@ install:

script:
- vendor/bin/php-cs-fixer --dry-run --config=./.php_cs.travis fix src/ tests/ || travis_terminate 1;
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
- |
if [[ "$TRAVIS_PHP_VERSION" == '7.1' ]]; then
vendor/bin/phpunit --configuration phpunit-7.1.xml
else
vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
fi
after_script:
- |
if [[ "$TRAVIS_PHP_VERSION" == '7.3' ]]; then
if [[ "$TRAVIS_PHP_VERSION" == '7.4' ]]; then
wget https://scrutinizer-ci.com/ocular.phar
php ocular.phar code-coverage:upload --format=php-clover coverage.clover
fi
Expand Down
149 changes: 149 additions & 0 deletions CHANGELOG.md

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions composer.json
Expand Up @@ -46,8 +46,9 @@
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"kalnoy/nestedset": "^5.0",
"nunomaduro/collision": "^3.0|^4.2",
"orchestra/testbench": "~3.3|~3.4|~3.5|~3.6|~3.7|~3.8|^4.0|^5.0",
"phpunit/phpunit": "~5.0|~6.0|~7.0|~8.0"
"phpunit/phpunit": "~5.0|~6.0|~7.0|~8.0|~9.0"
},
"autoload": {
"psr-4": {
Expand All @@ -58,7 +59,7 @@
}
},
"scripts": {
"test:phpunit": "vendor/bin/phpunit --colors=always",
"test:phpunit": "vendor/bin/phpunit",
"test:analyse": "php -d memory_limit=-1 vendor/bin/phpstan analyse",
"test:syntax": "vendor/bin/php-cs-fixer --dry-run --rules=-@PSR1 fix src",
"test": [
Expand Down

0 comments on commit 3989282

Please sign in to comment.