We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b486d1 commit 9d212abCopy full SHA for 9d212ab
.travis.yml
@@ -24,7 +24,12 @@ install:
24
25
script:
26
- ./vendor/bin/phpunit
27
+ # this checks that the source code follows the Symfony Code Syntax rules
28
- ./vendor/bin/php-cs-fixer fix --diff --dry-run -v
29
+ # this checks that the YAML config files contain no syntax errors
30
- ./bin/console lint:yaml app/config
31
- ./bin/console lint:yaml @CodeExplorerBundle
32
+ # this checks that the Twig template files contain no syntax errors
33
- ./bin/console lint:twig app/Resources @CodeExplorerBundle
34
+ # this checks that the application doesn't use dependencies with known security vulnerabilities
35
+ - ./bin/console security:check
0 commit comments