Skip to content

Commit

Permalink
Update dependencies and bump minimum php version to 7.2 (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
marmichalski authored and akondas committed Sep 12, 2019
1 parent 2ce1dcd commit 56ed69e
Show file tree
Hide file tree
Showing 6 changed files with 583 additions and 349 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/vendor
/.php_cs.cache
/.phpunit.result.cache
/phpunit.xml
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ matrix:

include:
- os: linux
php: '7.1'
php: '7.2'

- os: linux
php: '7.2'
php: '7.3'

cache:
directories:
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
* **Fixed** for any bug fixes.
* **Security** in case of vulnerabilities.

## [0.6.0] 2019-09-12
### Added
* Support for already initialized components (#15)
* Support for HeaderCollection.get (#17)

### Changed
* Required PHP version to at least 7.2

## [0.5.0] 2019-05-06
### Added
* Add support for phpstan 0.11
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Yii2 extension for PHPStan

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

| PHPStan version | Yii2 extension version |
| --------------- | ---------------------- |
| 0.11 | 0.5.x |
| 0.11 | 0.5.x+ |
| 0.10.3 | 0.4.x |
| 0.10 | 0.3.0 |
| 0.9.2 | 0.2.0 |
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
}
],
"require": {
"php": "^7.1",
"php": "^7.2",
"nikic/php-parser": "^4.1.0",
"phpstan/phpstan": "^0.11"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.13",
"phpunit/phpunit": "^7.0",
"phpunit/phpunit": "^8.0",
"yiisoft/yii2": "^2.0.15",
"phpstan/phpstan-phpunit": "^0.11"
},
Expand Down
Loading

0 comments on commit 56ed69e

Please sign in to comment.