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

Move enlightn/security-checker to "suggest" #5078

Merged
merged 18 commits into from Feb 21, 2022
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion .circleci/config.yml
Expand Up @@ -18,7 +18,8 @@ test_74_steps: &test74steps
steps:
- checkout
- run: cp .docker/zz-php.ini /usr/local/etc/php/conf.d/
- run: composer -n install
- run: composer -n require enlightn/security-checker --no-update
- run: composer -n update
- run: mkdir -p /tmp/results
- run: composer -n lint
- run: composer -n unit -- --log-junit /tmp/results/unit.junit.xml
Expand Down Expand Up @@ -103,6 +104,7 @@ jobs:
- run: cp .docker/zz-php.ini /usr/local/etc/php/conf.d/
- run: composer -n require --dev drupal/core-recommended:9.2.8 --no-update
- run: composer -n require symfony/polyfill-php80:"1.23 as 1.20" --no-update
- run: composer -n require enlightn/security-checker --no-update
- run: php --version
- run: composer -n update
- run: composer -n phpunit -- --testsuite integration --filter=testInsecureDrupalPackage --stop-on-skipped
Expand Down
10 changes: 6 additions & 4 deletions composer.json
Expand Up @@ -37,12 +37,11 @@
"consolidation/annotated-command": "^4.5",
"consolidation/config": "^2",
"consolidation/filter-via-dot-access-data": "^2",
"consolidation/robo": "^3",
"consolidation/robo": "^3.0.9",
"consolidation/site-alias": "^3.1.3",
"consolidation/site-process": "^4.1.3",
"enlightn/security-checker": "^1",
"consolidation/site-process": "^4.1.3 || ^5",
"guzzlehttp/guzzle": "^6.3 || ^7.0",
"league/container": "^3.4",
"league/container": "^3.4 || ^4",
"psr/log": "~1.0",
"psy/psysh": "~0.11",
"symfony/event-dispatcher": "^4.0 || ^5.0 || ^6.0",
Expand All @@ -65,6 +64,9 @@
"vlucas/phpdotenv": "^2.4",
"yoast/phpunit-polyfills": "^0.2.0"
},
"suggest": {
"enlightn/security-checker": "Required to use pm:security command"
},
"conflict": {
"drupal/core": "< 9.2",
"drupal/migrate_run": "*",
Expand Down