Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: fkalinski/phake

Tags

v3.1.9

Toggle v3.1.9's commit message

Unverified

This tag is not signed, but one or more authors requires that any tag attributed to them is signed.
Phake 3.1.9

v4.1.0

Toggle v4.1.0's commit message

Verified

This commit was signed with the committer’s verified signature.
adoy Pierrick Charron
Change repo url from mlively/Phake to phake/phake

v4.0.0

Toggle v4.0.0's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Add support for native annotations

This commit introduce a new `Phake\Annotation\IReader` interface.
There are two implementations of this class :

`Phake\Annotation\LegacyReader` (default for php7)

    This is the Phake 3.X way to do with the @mock and @var annotations
    in the comments.

`Phake\Annotation\NativeReader` (default for php8)

    This is the new way to do it. You need to add a `Phake\Mock` native
    attribute to your property.

If you're using PHP8 but still want to load the old way you can use
```
Phake\Annotation\MockInitializer::setDefaultReader(
	new Phake\Annotation\LegacyReader()
);
```

v3.1.8

Toggle v3.1.8's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request phake#286 from strider2038/phpunit-9-support

PHPUnit 9.0 support

v3.1.7

Toggle v3.1.7's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request phake#278 from JumboInteractiveLimited/master

ReflectionType::__toString() is deprecated in PHP 7.4

v3.1.6

Toggle v3.1.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request phake#276 from Syntaf/master

Prepend test namespace for mocked classes defined under that namespace

v3.1.5

Toggle v3.1.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request phake#272 from willemstuursma/random-bytes

Performance: replace uniqid with random_bytes

v3.1.4

Toggle v3.1.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request phake#274 from bfeaver/fix-mock-annotations

Use ReflectionProperty to fix parent mock annotations

v3.1.3

Toggle v3.1.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request phake#269 from mlively/fix-client-version-order

Check newer PHPUnit versions first

v3.1.2

Toggle v3.1.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request phake#268 from mlively/support-comparator-3

Add support for PHPUnit 7.2 and Comparator 3