Skip to content

Releases: sascha-egerer/phpstan-typo3

Add PHP8 compatibility

15 May 14:42

Choose a tag to compare

0.12.3

php 8.0 compatibility

0.12.2: Do not fail on calls to MyRepository->findBySomePropNotInModel()

28 Apr 15:31

Choose a tag to compare

Calling a findByXXX method on a repository tries to get the type of
the property from the model. But the reposiory does also allow findBy
methods for values that are not defined in the model but only in the
database. So if the model does not have the certain property we tread
it as type mixed.

Fix build for PHP 7.1

11 Feb 21:11

Choose a tag to compare

Fix build for PHP 7.1 Pre-release
Pre-release
0.13.1

Disable some more phpcs sniffs that are not available for PHP 7.1

0.13.0: Add dynamicConstantNames configuration

11 Feb 20:16

Choose a tag to compare

Add TYPO3 specific constants to the dynamicConstantNames
parameter of phpstan.
The constants are now marked as dynamic to prevent errors like

```
Strict comparison using === between 'BE' and 'BE' will always
evaluate to true.
```

Release 0.12.1 wich is the same as 0.13.1

11 Feb 21:22

Choose a tag to compare

The version number has been increased by accident as it is was in sync with phpstan before.
The 0.13.1 is now kept but is the same as 0.12.1

Release 0.12.0

13 Dec 13:23
742192e

Choose a tag to compare

Merge pull request #16 from sascha-egerer/feature/phpstan-0-12-compat…

Release 0.11.0

25 Oct 08:57
dffba86

Choose a tag to compare

Merge pull request #12 from sascha-egerer/feature/phpstan-0-11-compat…

Release 0.10.1

14 Jun 08:00
bd61028

Choose a tag to compare

Merge pull request #9 from Baachi/feature/extension-insaller

Add support for extension installer

0.10.0: Merge pull request #5 from sascha-egerer/bugfix/0-10-compatibility

29 Nov 13:00
50a0107

Choose a tag to compare

[BUGFIX] Update reflections to be compatible with 0.10 interfaces