Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.

Commit 4bdba64

Browse files
committed
Merge branch 'hotfix/180' into dev-4.0
Forward port #180
2 parents 4fa0c31 + 5575bb6 commit 4bdba64

File tree

6 files changed

+76
-63
lines changed

6 files changed

+76
-63
lines changed

.travis.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
sudo: false
2-
31
language: php
42

53
cache:
@@ -13,14 +11,15 @@ env:
1311
- TESTS_ZEND_CODE_ANNOTATION_DOCTRINE_SUPPORT=true
1412

1513
matrix:
14+
fast_finish: true
1615
include:
1716
- php: 7.1
1817
env:
1918
- DEPS=lowest
2019
- php: 7.1
2120
env:
2221
- DEPS=locked
23-
- LEGACY_DEPS="phpunit/phpunit"
22+
- LEGACY_DEPS="doctrine/annotations phpunit/phpunit"
2423
- CS_CHECK=true
2524
- TEST_COVERAGE=true
2625
- php: 7.1
@@ -44,6 +43,15 @@ matrix:
4443
- php: 7.3
4544
env:
4645
- DEPS=latest
46+
- php: 7.4
47+
env:
48+
- DEPS=lowest
49+
- php: 7.4
50+
env:
51+
- DEPS=locked
52+
- php: 7.4
53+
env:
54+
- DEPS=latest
4755

4856
before_install:
4957
- if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ All notable changes to this project will be documented in this file, in reverse
5151

5252
### Added
5353

54-
- Nothing.
54+
- [#180](https://github.com/zendframework/zend-code/pull/180) adds support for PHP 7.4.
5555

5656
### Changed
5757

@@ -69,6 +69,8 @@ All notable changes to this project will be documented in this file, in reverse
6969

7070
- [#179](https://github.com/zendframework/zend-code/pull/179) fixes exception message when invalid value provided in `Zend\Code\Generator\ValueGenerator`.
7171

72+
- [#180](https://github.com/zendframework/zend-code/pull/190) fixes PHP 7.4 compatibility.
73+
7274
## 3.4.0 - 2019-10-06
7375

7476
### Added

composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,14 @@
2020
},
2121
"require-dev": {
2222
"ext-phar": "*",
23-
"doctrine/annotations": "^1.0",
23+
"doctrine/annotations": "^1.7",
2424
"phpunit/phpunit": "^7.5.16 || ^8.4",
2525
"zendframework/zend-coding-standard": "^1.0",
2626
"zendframework/zend-stdlib": "^2.7 || ^3.0"
2727
},
28+
"conflict": {
29+
"phpspec/prophecy": "<1.9.0"
30+
},
2831
"suggest": {
2932
"doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
3033
"zendframework/zend-stdlib": "Zend\\Stdlib component"

composer.lock

Lines changed: 56 additions & 56 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)