proget-hq / phpstan-phpspec
PhpSpec extension for PHPStan
Installs: 30 030
Dependents: 1
Suggesters: 0
Security: 0
Stars: 20
Watchers: 3
Forks: 9
Open Issues: 2
Requires
- php: ^7.1
- nikic/php-parser: ^4.1
- phpspec/phpspec: ^6.0
- phpstan/phpstan: ^0.11.6
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.13
- phpstan/phpstan-phpunit: ^0.11
- phpunit/phpunit: ^7.0
- symfony/var-dumper: ^4.2
This package is auto-updated.
Last update: 2024-10-14 13:29:07 UTC
README
What does it do?
- Currently compatible with original specs from
PhpSpec
itself - Check if custom matcher exist in given spec class
- support fot
getMatchers
method
- support fot
- Provides correct return type for
Collaborator
in spec methodswill*
methods- support for array return type (check if array item has correct type)
- Allow to user
Propehcy
asCollaborator
argumentsArgument::cetera()
,Argument::any()
- Provides correct attributes for
Collaborator
- Provides correct methods for
ObjectBehavior
:should*
methodsduring*
methodsbeConstructedWith
,beConstructedThrough
,beAnInstanceOf
- search original spec class (subject) and check if methods exists
- Provides correct attributes for
ObjectBehavior
:- public attributes
- static properties (with
$this->CONSTANT_NAME
)
- Provides correct class for
getWrappedObject
method - Support
ObjectState Matcher
and check if appropriate methods exists
Compatibility
Installation
composer require --dev proget-hq/phpstan-phpspec
Configuration
Put this into your phpstan.neon
config:
includes: - vendor/proget-hq/phpstan-phpspec/extension.neon parameters: specDir: 'spec/'