Skip to content
This repository has been archived by the owner on Aug 17, 2022. It is now read-only.

Commit

Permalink
Enable Symfony Security Checker
Browse files Browse the repository at this point in the history
  • Loading branch information
mickaelandrieu committed Jul 16, 2019
1 parent 0f6aee5 commit ab1c84d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ script:
- composer phpstan
- composer psalm
- composer phpqa
- composer security-checker

after_success:
- bash <(curl -s https://codecov.io/bash)
6 changes: 4 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,16 @@
"psalm": "@php ./vendor/bin/psalm --threads=8 --diff --diff-methods",
"cs-fix": "@php ./vendor/bin/php-cs-fixer fix",
"test": "@php ./vendor/bin/phpunit",
"phpqa": "@php ./vendor/bin/phpqa --report --tools phpcs:0,phpmd:0,phpcpd:0,phpmetrics,phploc,pdepend,security-checker:0,parallel-lint:0 --ignoredDirs tests,vendor"
"phpqa": "@php ./vendor/bin/phpqa --report --tools phpcs:0,phpmd:0,phpcpd:0,phpmetrics,phploc,pdepend,security-checker:0,parallel-lint:0 --ignoredDirs tests,vendor",
"security-checker": "@php ./vendor/bin/security-checker security:check"
},
"scripts-descriptions": {
"phpstan": "Execute PHPStan analysis",
"psalm": "Execute Psalm analysis",
"cs-fix": "Check and fix coding styles using PHP CS Fixer",
"test": "Launch PHPUnit test suite",
"phpqa": "Execute PHQA toolsuite analysis"
"phpqa": "Execute PHQA toolsuite analysis",
"security-checker": "Executes Security Checker analysis"
},
"config": {
"sort-packages": true
Expand Down

0 comments on commit ab1c84d

Please sign in to comment.