Skip to content

Commit

Permalink
Updated "phpstan" configuration. Updated "psalm/plugin-phpunit" plugi…
Browse files Browse the repository at this point in the history
…n version.
  • Loading branch information
laurentmuller committed May 14, 2024
1 parent af35b10 commit e141c89
Show file tree
Hide file tree
Showing 4 changed files with 80 additions and 62 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
- Updated `TwigTest` class.
- Updated rector configuration.
- Move documentation to the root folder.
- Updated `phpstan` configuration.
- Updated `psalm/plugin-phpunit` plugin version.

## [2.20.12] - 2024-04-22

Expand Down
33 changes: 22 additions & 11 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,15 @@
"name": "laurentmuller/highcharts-bundle",
"type": "symfony-bundle",
"description": "Symfony Bundle that ease the use of highcharts to display rich graph and charts in your application.",
"keywords": ["symfony", "charting", "charts", "highcharts", "chart", "graph", "graphs"],
"keywords": [
"symfony",
"charting",
"charts",
"highcharts",
"chart",
"graph",
"graphs"
],
"homepage": "https://github.com/laurentmuller/HighchartsBundle",
"license": "MIT",
"authors": [
Expand All @@ -20,28 +28,28 @@
},
"require": {
"php": "^8.2",
"symfony/http-kernel": "^6.0| ^7.0",
"symfony/dependency-injection": "^6.0| ^7.0",
"laminas/laminas-json": "^3.0",
"symfony/config": "^6.0| ^7.0",
"symfony/dependency-injection": "^6.0| ^7.0",
"symfony/http-kernel": "^6.0| ^7.0",
"symfony/yaml": "^6.0| ^7.0",
"twig/twig": "^3.0",
"laminas/laminas-json": "^3.0"
"twig/twig": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"psalm/plugin-phpunit": "^0.19",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"slam/phpstan-extensions": "^6.0",
"spaze/phpstan-disallowed-calls": "^2.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-strict-rules": "^1.5",
"phpstan/extension-installer": "^1.0",
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "^10.0",
"rector/rector": "^0.19",
"rector/rector": "^1.0",
"slam/phpstan-extensions": "^6.0",
"spaze/phpstan-disallowed-calls": "^2.0",
"symfony/framework-bundle": "^6.0| ^7.0",
"symfony/phpunit-bridge": "^6.0| ^7.0",
"vimeo/psalm": "^5.0",
"psalm/plugin-phpunit": "^0.18"
"vimeo/psalm": "^5.0"
},
"autoload": {
"psr-4": {
Expand All @@ -54,6 +62,9 @@
}
},
"config": {
"platform": {
"php": "8.2.16"
},
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
Expand Down
103 changes: 54 additions & 49 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions phpstan.neon
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ parameters:
paths:
- src

# Level 6
checkMissingIterableValueType: false

ignoreErrors:
- message: '#Variable property access#'
-
identifier: missingType.iterableValue

0 comments on commit e141c89

Please sign in to comment.