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

Commit 5d4e844

Browse files
committed
Merge branch 'hotfix/22'
Close #22
2 parents 573e24f + 0b5fd74 commit 5d4e844

File tree

5 files changed

+46
-45
lines changed

5 files changed

+46
-45
lines changed

.travis.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ language: php
55
cache:
66
directories:
77
- $HOME/.composer/cache
8-
- vendor
98

109
env:
1110
global:
@@ -20,8 +19,8 @@ matrix:
2019
- php: 7.1
2120
env:
2221
- DEPS=locked
23-
- TEST_COVERAGE=true
2422
- CS_CHECK=true
23+
- TEST_COVERAGE=true
2524
- php: 7.1
2625
env:
2726
- DEPS=latest
@@ -34,15 +33,12 @@ matrix:
3433
- php: 7.2
3534
env:
3635
- DEPS=latest
37-
allow_failures:
38-
- php: 7.2
3936

4037
before_install:
41-
- if [[ $TEST_COVERAGE != 'true' && $TRAVIS_PHP_VERSION =~ ^7.1 ]]; then phpenv config-rm xdebug.ini || return 0 ; fi
42-
- travis_retry composer self-update
38+
- if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi
4339

4440
install:
45-
- travis_retry composer install $COMPOSER_ARGS --ignore-platform-reqs
41+
- travis_retry composer install $COMPOSER_ARGS
4642
- if [[ $DEPS == 'latest' ]]; then travis_retry composer update $COMPOSER_ARGS ; fi
4743
- if [[ $DEPS == 'lowest' ]]; then travis_retry composer update --prefer-lowest --prefer-stable $COMPOSER_ARGS ; fi
4844
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry composer require --dev $COMPOSER_ARGS $COVERAGE_DEPS ; fi

LICENSE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
Copyright (c) 2017, Zend Technologies USA, Inc.
2+
23
All rights reserved.
34

45
Redistribution and use in source and binary forms, with or without modification,

composer.json

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"name": "zendframework/zend-expressive-hal",
33
"description": "Hypertext Application Language implementation for PHP and PSR-7",
4-
"type": "library",
54
"license": "BSD-3-Clause",
65
"keywords": [
76
"expressive",
@@ -13,18 +12,25 @@
1312
"psr-13",
1413
"rest",
1514
"zf",
16-
"zendframework"
15+
"zendframework",
16+
"zend-expressive"
1717
],
18+
"config": {
19+
"sort-packages": true
20+
},
21+
"extra": {
22+
"zf": {
23+
"config-provider": "Zend\\Expressive\\Hal\\ConfigProvider"
24+
}
25+
},
1826
"support": {
1927
"docs": "https://docs.zendframework.com/zend-expressive-hal/",
2028
"issues": "https://github.com/zendframework/zend-expressive-hal/issues",
2129
"source": "https://github.com/zendframework/zend-expressive-hal",
30+
"rss": "https://github.com/zendframework/zend-expressive-hal/releases.atom",
2231
"slack": "https://zendframework-slack.herokuapp.com",
2332
"forum": "https://discourse.zendframework.com/c/questions/expressive"
2433
},
25-
"config": {
26-
"sort-packages": true
27-
},
2834
"require": {
2935
"php": "^7.1",
3036
"psr/http-message": "^1.0.1",
@@ -33,7 +39,7 @@
3339
"willdurand/negotiation": "^2.3.1"
3440
},
3541
"require-dev": {
36-
"phpunit/phpunit": "^6.4.1",
42+
"phpunit/phpunit": "^6.4.3",
3743
"zendframework/zend-coding-standard": "~1.0.0",
3844
"zendframework/zend-diactoros": "^1.6",
3945
"zendframework/zend-expressive-helpers": "^4.2",
@@ -59,11 +65,6 @@
5965
"ZendTest\\Expressive\\Hal\\": "test/"
6066
}
6167
},
62-
"extra": {
63-
"zf": {
64-
"config-provider": "Zend\\Expressive\\Hal\\ConfigProvider"
65-
}
66-
},
6768
"scripts": {
6869
"check": [
6970
"@cs-check",

composer.lock

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

docs/SUPPORT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ Zend Framework offers three support channels:
55
- For real-time questions, use our
66
[Slack](https://zendframework-slack.herokuapp.com)
77
- For detailed questions (e.g., those requiring examples) use our
8-
[forums](https://discourse.zendframework.com/c/contributors)
8+
[forums](https://discourse.zendframework.com/c/questions/expressive)
99
- To report issues, use this repository's
10-
[issue tracker](https://github.com/{org}/{repo}/issues/new)
10+
[issue tracker](https://github.com/zendframework/zend-expressive-hal/issues/new)
1111

1212
**DO NOT** use the issue tracker to ask questions; use Slack or the forums for
1313
that. Questions posed to the issue tracker will be closed.

0 commit comments

Comments
 (0)