Skip to content
Snippets Groups Projects
Commit d38e4e30 authored by Jonathan Foucher's avatar Jonathan Foucher
Browse files

update packages to fix security issue in twig

parent edd698ed
No related branches found
Tags v1.10.18
No related merge requests found
Pipeline #35091 failed
......@@ -32,3 +32,8 @@ yarn-error.log
/config/jwt/*.pem
###< lexik/jwt-authentication-bundle ###
.history
###> phpunit/phpunit ###
/phpunit.xml
.phpunit.result.cache
###< phpunit/phpunit ###
......@@ -62,7 +62,7 @@ php-cs-fixer: ## php-cs-fixer (http://cs.sensiolabs.org)
$(QA) php-cs-fixer fix --config=.php_cs.dist --dry-run --using-cache=no --verbose --diff --stop-on-violation
apply-php-cs-fixer: ## apply php-cs-fixer fixes
$(QA) php-cs-fixer fix --using-cache=no --verbose --diff
$(QA) php-cs-fixer fix --config=.php_cs.dist --using-cache=no --verbose --diff
phpstan: ## PHP Static Analysis Tool (https://github.com/phpstan/phpstan)
$(QA) phpstan analyse -c phpstan.neon -l2 src
......
......@@ -54,6 +54,7 @@
"symfony/validator": "4.4.*",
"symfony/webpack-encore-bundle": "^1.7",
"twig/extensions": "^1.5",
"twig/twig": "^v2.14",
"wmde/iterable-functions": "^0.2.0"
},
"require-dev": {
......
This diff is collapsed.
......@@ -382,7 +382,7 @@ class AnalyseImpactController extends CRUDController
$scenarios = $object->getScenarioMenaces();
foreach ($scenarios as $scenario) {
/**
/*
* @var AnalyseScenarioMenace
*/
if ('negligeable' !== $scenario->getGravite() || 'vide' !== $scenario->getGravite() || 'negligeable' !== $scenario->getVraisemblance() || 'vide' !== $scenario->getVraisemblance()) {
......
......@@ -279,7 +279,7 @@ class CollectivityController extends CRUDController
$deletedMesurements = $this->mesurementRepository->findBy(['collectivity' => $object]);
foreach ($deletedMesurements as $deletedMesurement) {
/**
/*
* @var Mesurement
*/
if ($deletedMesurement->getClonedFrom()) {
......
......@@ -118,9 +118,6 @@
"egulias/email-validator": {
"version": "2.1.4"
},
"fig/link-util": {
"version": "1.1.2"
},
"friendsofphp/php-cs-fixer": {
"version": "2.2",
"recipe": {
......@@ -328,15 +325,24 @@
"scienta/doctrine-json-functions": {
"version": "4.1.2"
},
"sebastian/cli-parser": {
"version": "1.0.1"
},
"sebastian/comparator": {
"version": "3.0.0"
},
"sebastian/complexity": {
"version": "2.0.2"
},
"sebastian/diff": {
"version": "3.0.0"
},
"sebastian/exporter": {
"version": "3.1.0"
},
"sebastian/lines-of-code": {
"version": "1.0.3"
},
"sebastian/recursion-context": {
"version": "3.0.0"
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment