Skip to content

Commit 56ed69e

Browse files
marmichalskiakondas
authored andcommitted
Update dependencies and bump minimum php version to 7.2 (#19)
1 parent 2ce1dcd commit 56ed69e

File tree

6 files changed

+583
-349
lines changed

6 files changed

+583
-349
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/vendor
22
/.php_cs.cache
3+
/.phpunit.result.cache
34
/phpunit.xml

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ matrix:
55

66
include:
77
- os: linux
8-
php: '7.1'
8+
php: '7.2'
99

1010
- os: linux
11-
php: '7.2'
11+
php: '7.3'
1212

1313
cache:
1414
directories:

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1212
* **Fixed** for any bug fixes.
1313
* **Security** in case of vulnerabilities.
1414

15+
## [0.6.0] 2019-09-12
16+
### Added
17+
* Support for already initialized components (#15)
18+
* Support for HeaderCollection.get (#17)
19+
20+
### Changed
21+
* Required PHP version to at least 7.2
22+
1523
## [0.5.0] 2019-05-06
1624
### Added
1725
* Add support for phpstan 0.11

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Yii2 extension for PHPStan
22

3-
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%207.1-8892BF.svg)](https://php.net/)
3+
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%207.2-8892BF.svg)](https://php.net/)
44
[![Latest Stable Version](https://img.shields.io/packagist/v/proget-hq/phpstan-yii2.svg)](https://packagist.org/packages/proget-hq/phpstan-yii2)
55
[![Build Status](https://travis-ci.org/proget-hq/phpstan-yii2.svg?branch=master)](https://travis-ci.org/proget-hq/phpstan-yii2)
66
[![Total Downloads](https://poser.pugx.org/proget-hq/phpstan-yii2/downloads.svg)](https://packagist.org/packages/proget-hq/phpstan-yii2)
@@ -16,7 +16,7 @@
1616

1717
| PHPStan version | Yii2 extension version |
1818
| --------------- | ---------------------- |
19-
| 0.11 | 0.5.x |
19+
| 0.11 | 0.5.x+ |
2020
| 0.10.3 | 0.4.x |
2121
| 0.10 | 0.3.0 |
2222
| 0.9.2 | 0.2.0 |

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
}
1111
],
1212
"require": {
13-
"php": "^7.1",
13+
"php": "^7.2",
1414
"nikic/php-parser": "^4.1.0",
1515
"phpstan/phpstan": "^0.11"
1616
},
1717
"require-dev": {
1818
"friendsofphp/php-cs-fixer": "^2.13",
19-
"phpunit/phpunit": "^7.0",
19+
"phpunit/phpunit": "^8.0",
2020
"yiisoft/yii2": "^2.0.15",
2121
"phpstan/phpstan-phpunit": "^0.11"
2222
},

0 commit comments

Comments
 (0)