Skip to content

Commit

Permalink
Merge d4a0a52 into e06b440
Browse files Browse the repository at this point in the history
  • Loading branch information
michalbundyra committed Nov 8, 2017
2 parents e06b440 + d4a0a52 commit 65452ee
Show file tree
Hide file tree
Showing 7 changed files with 71 additions and 61 deletions.
5 changes: 1 addition & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,9 @@ matrix:
- php: 7.2
env:
- DEPS=latest
allow_failures:
- php: 7.2

before_install:
- if [[ $TEST_COVERAGE != 'true' && "$(php --version | grep xdebug -ci)" -ge 1 ]]; then phpenv config-rm xdebug.ini || return 0 ; fi
- travis_retry composer self-update
- if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi

install:
- travis_retry composer install $COMPOSER_ARGS
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) {year}, Zend Technologies USA, Inc.
Copyright (c) 2017, Zend Technologies USA, Inc.
All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
Expand Down
33 changes: 17 additions & 16 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,20 @@
{
"name": "zendframework/zend-expressive-authorization",
"description": "Authorization middleware for Expressive and PSR-7 applications",
"homepage": "https://docs.zendframework.com/zend-expressive-authorization/",
"type": "library",
"license": "BSD-3-Clause",
"keywords": [
"authorization",
"middleware",
"psr-7",
"zf",
"zendframework",
"zend-expressive"
],
"config": {
"sort-packages": true
},
"support": {
"docs": "https://docs.zendframework.com/zend-expressive-authorization/",
"issues": "https://github.com/zendframework/zend-expressive-authorization/issues",
"source": "https://github.com/zendframework/zend-expressive-authorization",
"rss": "https://github.com/zendframework/zend-expressive-authorization/releases.atom",
"slack": "https://zendframework-slack.herokuapp.com",
"forum": "https://discourse.zendframework.com/c/questions/expressive"
},
Expand All @@ -28,7 +26,7 @@
"zendframework/zend-expressive-router": "^2.2"
},
"require-dev": {
"phpunit/phpunit": "^6.0.8",
"phpunit/phpunit": "^6.4.3",
"roave/security-advisories": "dev-master",
"zendframework/zend-coding-standard": "~1.0.0"
},
Expand All @@ -39,14 +37,6 @@
"zendframework/zend-expressive-authorization-acl": "^0.1 || ^1.0; provides a zend-permissions-acl-backed adapter",
"zendframework/zend-expressive-authorization-rbac": "^0.1 || ^1.0; provides a zend-permissions-rbac-backed adapter"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"zf": {
"config-provider": "Zend\\Expressive\\Authorization\\ConfigProvider"
}
},
"autoload": {
"psr-4": {
"Zend\\Expressive\\Authorization\\": "src/"
Expand All @@ -57,15 +47,26 @@
"ZendTest\\Expressive\\Authorization\\": "test/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"zf": {
"config-provider": "Zend\\Expressive\\Authorization\\ConfigProvider"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"upload-coverage": "coveralls -v",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --coverage-clover clover.xml"
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"upload-coverage": "coveralls -v"
}
}
74 changes: 39 additions & 35 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 9 additions & 1 deletion docs/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
Provide a narrative description of the issue.
- [ ] I was not able to find an [open](https://github.com/zendframework/zend-expressive-authorization/issues?q=is%3Aopen) or [closed](https://github.com/zendframework/zend-expressive-authorization/issues?q=is%3Aclosed) issue matching what I'm seeing.
- [ ] This is not a question. (Questions should be asked on [slack](https://zendframework.slack.com/) ([Signup for Slack here](https://zendframework-slack.herokuapp.com/)) or our [forums](https://discourse.zendframework.com/).)

Provide a narrative description of what you are trying to accomplish.

### Code to reproduce the issue

<!-- Please provide the minimum code necessary to recreate the issue -->

```php
```

### Expected results

<!-- What do you think should have happened? -->

### Actual results

<!-- What did you actually observe? -->
6 changes: 3 additions & 3 deletions docs/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ Provide a narrative description of what you are trying to accomplish:
- [ ] Add a `CHANGELOG.md` entry for the new feature.

- [ ] Is this related to quality assurance?
- [ ] Detail why the changes are necessary.
<!-- Detail why the changes are necessary -->

- [ ] Is this related to documentation?
- [ ] Is it a typographical and/or grammatical fix?
- [ ] Is it new documentation?
<!-- Is it a typographical and/or grammatical fix? -->
<!-- Is it new documentation? -->
2 changes: 1 addition & 1 deletion docs/SUPPORT.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Zend Framework offers three support channels:
- For real-time questions, use our
[Slack](https://zendframework-slack.herokuapp.com)
- For detailed questions (e.g., those requiring examples) use our
[forums](https://discourse.zendframework.com/c/questions/components)
[forums](https://discourse.zendframework.com/c/questions/expressive)
- To report issues, use this repository's
[issue tracker](https://github.com/zendframework/zend-expressive-authorization/issues/new)

Expand Down

0 comments on commit 65452ee

Please sign in to comment.