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

Commit 455de23

Browse files
committed
Merge branch 'feature/stable-release'
Close #10
2 parents 149b70d + 65f5f95 commit 455de23

File tree

9 files changed

+234
-142
lines changed

9 files changed

+234
-142
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ matrix:
3333
- php: 7.2
3434
env:
3535
- DEPS=latest
36+
- php: nightly
37+
env:
38+
- DEPS=latest
3639

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

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,31 @@
22

33
All notable changes to this project will be documented in this file, in reverse chronological order by release.
44

5+
## 1.0.0 - TBD
6+
7+
### Added
8+
9+
- [#10](https://github.com/zendframework/zend-expressive-authentication-basic/pull/10) adds support for the upcoming PHP 7.3 release.
10+
11+
- [#10](https://github.com/zendframework/zend-expressive-authentication-basic/pull/10) adds full configuration and usage documentation.
12+
13+
### Changed
14+
15+
- Nothing.
16+
17+
### Deprecated
18+
19+
- Nothing.
20+
21+
### Removed
22+
23+
- [#10](https://github.com/zendframework/zend-expressive-authentication-basic/pull/10) removes support for pre-1.0 versions of
24+
zendframework/zend-expressive-authentication.
25+
26+
### Fixed
27+
28+
- Nothing.
29+
530
## 0.3.1 - 2018-07-25
631

732
### Added

composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"php": "^7.1",
2222
"psr/container": "^1.0",
2323
"psr/http-message": "^1.0.1",
24-
"zendframework/zend-expressive-authentication": "^0.4.0 || ^1.0"
24+
"zendframework/zend-expressive-authentication": "^1.0"
2525
},
2626
"require-dev": {
2727
"phpunit/phpunit": "^7.0.1",
@@ -42,7 +42,8 @@
4242
},
4343
"extra": {
4444
"branch-alias": {
45-
"dev-master": "1.0.x-dev"
45+
"dev-master": "1.0.x-dev",
46+
"dev-develop": "1.1.x-dev"
4647
},
4748
"zf": {
4849
"config-provider": "Zend\\Expressive\\Authentication\\Basic\\ConfigProvider"

0 commit comments

Comments
 (0)