Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support BetterReflection 4 #248

Merged
merged 13 commits into from
Jun 22, 2020
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ git:

deploy:
provider: releases
api_key: $DEPLOY_TOKEN_SECURE
token: $DEPLOY_TOKEN_SECURE
file: dist/roave-backward-compatibility-check.phar
# do not skip cleanup: if the repo is cleaned up when deploying, then the phar is gone as well.
skip_cleanup: true
cleanup: false
on:
tags: true

Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
script: vendor/bin/phpcs

- stage: Mutation Tests
script: vendor/bin/infection --min-msi=100 --min-covered-msi=100
script: vendor/bin/infection --min-msi=100 --min-covered-msi=100 --show-mutations

- stage: Verify BC Breaks
script: bin/roave-backward-compatibility-check --from=master --to=HEAD
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"composer/composer": "^1.10.5",
"nikolaposa/version": "^4.0.0",
"ocramius/package-versions": "^1.5.1",
"roave/better-reflection": "^3.5.0",
"roave/better-reflection": "^4.3.0",
"symfony/console": "^4.4.8",
"symfony/process": "^5.1.0",
"thecodingmachine/safe": "^1.1"
Expand Down
149 changes: 76 additions & 73 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions src/Changes.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,6 @@ public function getIterator() : iterable
$this->unBufferedChanges = null;
}

/**
* {@inheritDoc}
*/
public function count() : int
{
return count(iterator_to_array($this));
Expand Down
Loading