Skip to content

Commit

Permalink
Merge pull request #7 from 21TORR/phpstan-phpunit
Browse files Browse the repository at this point in the history
  • Loading branch information
keichinger authored May 13, 2024
2 parents a269802 + 21c62fb commit 94770e3
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 12 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
1.1.1 (unreleased)
1.2.0
=====

* (improvement) Remove duplicate space in command.
* (improvement) Bump PHPStan
* (feature) Add PHPUnit extension for PHPStan


1.1.0
Expand Down
9 changes: 5 additions & 4 deletions _init/library/vendor-bin/phpstan/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
},
"require-dev": {
"phpstan/extension-installer": "^1.3.1",
"phpstan/phpstan": "^1.10.67",
"phpstan/phpstan-deprecation-rules": "^1.1.4",
"phpstan/phpstan-doctrine": "^1.3.69",
"phpstan/phpstan-symfony": "^1.3.12",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpstan/phpstan-doctrine": "^1.4",
"phpstan/phpstan-phpunit": "^1.4",
"phpstan/phpstan-symfony": "^1.4",
"roave/security-advisories": "dev-latest",
"staabm/phpstan-todo-by": "^0.1.25"
},
Expand Down
9 changes: 5 additions & 4 deletions _init/symfony/vendor-bin/phpstan/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
},
"require-dev": {
"phpstan/extension-installer": "^1.3.1",
"phpstan/phpstan": "^1.10.67",
"phpstan/phpstan-deprecation-rules": "^1.1.4",
"phpstan/phpstan-doctrine": "^1.3.69",
"phpstan/phpstan-symfony": "^1.3.12",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpstan/phpstan-doctrine": "^1.4",
"phpstan/phpstan-phpunit": "^1.4",
"phpstan/phpstan-symfony": "^1.4",
"roave/security-advisories": "dev-latest",
"staabm/phpstan-todo-by": "^0.1.25"
},
Expand Down
4 changes: 1 addition & 3 deletions phpstan/lib.neon
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@ parameters:
checkUninitializedProperties: true
inferPrivatePropertyTypeFromConstructor: true
polluteScopeWithLoopInitialAssignments: false
# as soon as PHPStan 1.11 is released
# reportPossiblyNonexistentConstantArrayOffset: true
# reportPossiblyNonexistentGeneralArrayOffset: true
reportPossiblyNonexistentConstantArrayOffset: true
reportUnmatchedIgnoredErrors: false
treatPhpDocTypesAsCertain: false

Expand Down

0 comments on commit 94770e3

Please sign in to comment.