Skip to content

Tags: memio/model

Tags

v3.0.1

Toggle v3.0.1's commit message
3.0.1: PHP 8 and phpspec 7 support

* added PHP 8 support
* added phpspec 7 support

v3.0.0

Toggle v3.0.0's commit message
PHP 7.2 requirement

Dropped support for PHP <7.2

Other upgrades:

* upgraded PHP CS Fixer (from 2.10 to 2.16)
* upgraded phpspec (from 4.3 to 6.1)

*BC Breaks* - removed deprecated api:

* removed all `make` static constructors

2.0.4

Toggle 2.0.4's commit message
Normalized float to double

Normalization from float to double, thanks to @ItsKelsBoys

2.0.3

Toggle 2.0.3's commit message
Updated test suite

v2.0.1

Toggle v2.0.1'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 #16 from roukmoute/version-2

Add support for PHP 7.2

v2.0.0

Toggle v2.0.0's commit message
Released v2.0.0-alpha3

v2.0.0-alpha3

Toggle v2.0.0-alpha3's commit message
Return type hints

* added return type hints

v2.0.0-alpha2

Toggle v2.0.0-alpha2's commit message
Fixes

* fixed PHPdoc return type hints

v2.0.0-alpha1

Toggle v2.0.0-alpha1's commit message
PHP 7

Dropped support for PHP < 7

This means we now can use:

* scalar type hints
* return type hints
* callable type hint, without having to check PHP version

All `make` static constructor were created for PHP < 5.6, they're
now deprecated. Here's an example of what to use instead:

```
(new Method('sayHello'))
    ->addArgument(new Argument('string', 'name')))
;
```

v1.4.1

Toggle v1.4.1's commit message
* reverted the FQCN change