Skip to content

Commit

Permalink
update to latest dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nicklog committed Dec 2, 2023
1 parent 599c379 commit d4abe09
Showing 1 changed file with 30 additions and 24 deletions.
54 changes: 30 additions & 24 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,29 +28,29 @@
}
],
"require": {
"php": "~7.2",
"symfony/framework-bundle": "~4.4|~5.0",
"symfony/config": "~4.4|~5.0",
"symfony/http-kernel": "~4.4|~5.0",
"symfony/dependency-injection": "~4.4|~5.0",
"symfony/event-dispatcher": "~4.4|~5.0",
"symfony/event-dispatcher-contracts": "~1.0|~2.0",
"symfony/http-foundation": "~4.4|~5.0",
"twig/twig": "~2.11|~3.0"
"php": "~8.2",
"symfony/framework-bundle": "^5.4 || ^6.4 || ^7.0",
"symfony/config": "^5.4 || ^6.4 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.4 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0",
"symfony/event-dispatcher": "^5.4 || ^6.4 || ^7.0",
"symfony/event-dispatcher-contracts": "^2.0 || ^3.0",
"symfony/http-foundation": "^5.4 || ^6.4 || ^7.0",
"twig/twig": "^3.8"
},
"require-dev": {
"doctrine/coding-standard": "~8.0",
"doctrine/coding-standard": "~12.0",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "~3.4",
"phpstan/phpstan": "~0.12",
"phpstan/phpstan-deprecation-rules": "~0.12",
"phpstan/phpstan-phpunit": "~0.12",
"phpstan/phpstan-strict-rules": "~0.12",
"maglnet/composer-require-checker": "~2.0",
"phpunit/phpunit": "~9.0",
"symfony/var-dumper": "~5.0",
"dg/bypass-finals": "~1.1",
"icanhazstring/composer-unused": "^0.7.3"
"squizlabs/php_codesniffer": "~3.7",
"phpstan/phpstan": "~1.10",
"phpstan/phpstan-deprecation-rules": "~1.1",
"phpstan/phpstan-phpunit": "~1.3",
"phpstan/phpstan-strict-rules": "~1.5",
"maglnet/composer-require-checker": "~4.7",
"phpunit/phpunit": "~10.5",
"symfony/var-dumper": "~7.0",
"dg/bypass-finals": "~1.5",
"icanhazstring/composer-unused": "^0.8"
},
"autoload": {
"psr-4": {
Expand All @@ -65,12 +65,12 @@
"scripts": {
"check": [
"@crc",
"composer unused",
"@unused",
"@cs-check",
"@phpstan",
"@phpunit"
],
"unuse": "composer unused --excludeDir=vendor",
"unused": "composer unused --excludeDir=vendor",
"phpstan": "./vendor/bin/phpstan analyse ./src",
"phpstan-update-baseline": "phpstan analyse --ansi --generate-baseline phpstan-baseline.neon",
"crc": "./vendor/bin/composer-require-checker --config-file=./composer-require-checker.json",
Expand All @@ -80,12 +80,18 @@
},
"extra": {
"branch-alias": {
"dev-master": "4.0-dev"
"dev-master": "5.0-dev"
},
"unused": [
"symfony/framework-bundle"
]
},
"minimum-stability": "dev",
"prefer-stable": true
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"icanhazstring/composer-unused": true
}
}
}

0 comments on commit d4abe09

Please sign in to comment.