Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies #19

Merged
merged 1 commit into from Sep 12, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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