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 Symfony 5 and 6 #255

Merged
merged 2 commits into from
Feb 2, 2022
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
13 changes: 0 additions & 13 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,18 +171,6 @@ jobs:
name: Run against a module
command: |
drupal-check /tmp/drupal/web/core/modules/dynamic_page_cache
test_symfony_console_conflict:
<<: *defaults
steps:
- setup-job
- run: mkdir -p /tmp/example
- run: composer require behat/behat:^3.0 drush/drush:^9 --working-dir /tmp/example
- run: |
composer config repositories.0 '{"type": "path", "url": "~/repo", "options": { "symlink": false }}' --working-dir /tmp/example
- run: |
composer require mglaman/drupal-check *@dev --working-dir /tmp/example
- run: |
/tmp/example/vendor/bin/drupal-check --version
test_contained_not_initialized:
<<: *defaults
steps:
Expand All @@ -205,7 +193,6 @@ workflows:
- test_drupal
- test_drupal_project
- test_global_require_with_drush
- test_symfony_console_conflict
- test_contrib
- test_contained_not_initialized
- test_drupal_local_require
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"mglaman/phpstan-drupal": "^1.0.0",
"nette/neon": "^3.1",
"phpstan/phpstan-deprecation-rules": "^1.0.0",
"symfony/console": "~3.2 || ~4.0",
"symfony/process": "~3.2 || ~4.0",
"symfony/console": "~3.4.5 || ^4.2|| ^5.0 || ^6.0",
"symfony/process": "~3.4.5 || ^4.2|| ^5.0 || ^6.0",
"webflo/drupal-finder": "^1.1"
},
"require-dev": {
Expand Down
Loading