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

Upgrade cs lib #1069

Merged
merged 10 commits into from
Nov 8, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,8 @@ install:

# install composer dependencies
- cd C:\projects\migrations
- rm composer.lock
- appveyor-retry composer self-update
- appveyor-retry composer install --no-progress --prefer-dist
- appveyor-retry composer update --no-progress --prefer-dist

test_script:
- vendor\bin\phpunit
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ logs/
reports/
dist/
tests/phpunit.xml
vendor/
phpunit.xml
/composer.lock
vendor/
/phpcs.xml
/phpstan.neon
/.phpcs-cache
Expand Down
9 changes: 4 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ php:
- 7.1
- 7.2
- 7.3
- 7.4snapshot
- 7.4

cache:
directories:
Expand All @@ -16,8 +16,8 @@ before_install:
- mv ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini{,.disabled} || echo "xdebug not available"

install:
- rm composer.lock
- travis_retry composer update --prefer-dist
- ./download-box.sh

script:
- ./vendor/bin/phpunit
Expand All @@ -27,7 +27,6 @@ jobs:
- stage: Test
env: DEPENDENCIES=low
install:
- rm composer.lock
- travis_retry composer update --prefer-dist --prefer-lowest
- ./download-box.sh

Expand All @@ -44,10 +43,10 @@ jobs:

- stage: Code Quality
env: CODING_STANDARDS
install: travis_retry composer install --prefer-dist
install: travis_retry composer update --prefer-dist
script: ./vendor/bin/phpcs

- stage: Code Quality
env: STATIC_ANALYSIS
install: travis_retry composer install --prefer-dist
install: travis_retry composer update --prefer-dist
script: vendor/bin/phpstan analyse
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"composer/package-versions-deprecated": "^1.8",
"doctrine/dbal": "^2.9",
"ocramius/proxy-manager": "^2.0.2",
"symfony/console": "^3.4||^4.0||^5.0",
"symfony/console": "^3.4||^4.4.16||^5.0",
"symfony/stopwatch": "^3.4||^4.0||^5.0"
},
"require-dev": {
Expand Down
Loading