Skip to content

Commit

Permalink
Merge pull request #17 from basz/prepare-0.1.0-beta1
Browse files Browse the repository at this point in the history
release prep
  • Loading branch information
basz authored Feb 26, 2017
2 parents fe19d72 + a1ffcca commit eec2368
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Changelog

## 0.1.0-beta1

- first release, for [ZfrOAuth2Server v0.8.0-beta1](https://github.com/zf-fr/zfr-oauth2-server)
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# zfr-oauth2-server-doctrine

Doctrine 2 adapter for [ZfrOAuth2Server](http://github.com/zf-fr/zfr-oauth2-server)

[![Build Status](https://travis-ci.org/zf-fr/zfr-oauth2-server-doctrine.png)](https://travis-ci.org/zf-fr/zfr-oauth2-server-doctrine)
Expand All @@ -18,10 +19,20 @@ Doctrine 2 adapter for [ZfrOAuth2Server](http://github.com/zf-fr/zfr-oauth2-serv
Installation is only officially supported using Composer:

```sh
php composer.phar require zfr/zfr-oauth2-server-doctrine:^1.0
php composer.phar require zfr/zfr-oauth2-server-doctrine:^0.1-beta
```

## Support

- File issues at [https://github.com/zf-fr/zfr-oauth2-server-doctrine/issues](https://github.com/zf-fr/zfr-oauth2-server-doctrine/issues).
- Say hello in our [gitter](https://gitter.im/prolic/zfr-oauth2-server) chat.


## Configuration

to be written

## Second level cache

Scope and tokens are marked cacheable to take advantage of Doctrine 2.5 ORM second level cache. However, you
need to configure the regions yourself.
14 changes: 10 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@
}
],
"require": {
"php": ">=7.0",
"zfr/zfr-oauth2-server": "dev-master",
"doctrine/orm": "~2.5",
"psr/container": "^1.0"
"php": "^7.0",
"zfr/zfr-oauth2-server": "^0.8-beta",
"doctrine/orm": "^2.5",
"psr/container": "^1.0",
"roave/security-advisories": "dev-master"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.1",
Expand All @@ -40,5 +41,10 @@
"psr-4": {
"ZfrOAuth2Test\\Server\\Doctrine\\": "tests/src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.2-dev"
}
}
}

0 comments on commit eec2368

Please sign in to comment.