Skip to content

Commit

Permalink
Merge pull request #6 from royalphp/refresh-depends
Browse files Browse the repository at this point in the history
Adds PHP 8.0 support
  • Loading branch information
froschdesign committed Apr 30, 2021
2 parents 41d1918 + d849ee1 commit 079ed83
Show file tree
Hide file tree
Showing 13 changed files with 2,704 additions and 260 deletions.
1 change: 0 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
/.gitattributes export-ignore
/.github/ export-ignore
/.gitignore export-ignore
/.travis.yml export-ignore
/docs/ export-ignore
/mkdocs.yml export-ignore
/phpcs.xml export-ignore
Expand Down
33 changes: 33 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: "Continuous Integration"

on:
pull_request:
push:
branches:
- '[0-9]+.[0-9]+.x'
- 'refs/pull/*'
tags:

jobs:
matrix:
name: Generate job matrix
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.matrix.outputs.matrix }}
steps:
- name: Gather CI configuration
id: matrix
uses: laminas/laminas-ci-matrix-action@v1

qa:
name: QA Checks
needs: [matrix]
runs-on: ${{ matrix.operatingSystem }}
strategy:
fail-fast: false
matrix: ${{ fromJSON(needs.matrix.outputs.matrix) }}
steps:
- name: ${{ matrix.name }}
uses: laminas/laminas-continuous-integration-action@v1
with:
job: ${{ matrix.job }}
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/clover.xml
/composer.lock
/coveralls-upload.json
/docs/html/
/laminas-mkdoc-theme.tgz
Expand Down
54 changes: 0 additions & 54 deletions .travis.yml

This file was deleted.

194 changes: 0 additions & 194 deletions CHANGELOG.md

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Mezzio Authorization middleware

[![Build Status](https://travis-ci.com/mezzio/mezzio-authorization.svg?branch=master)](https://travis-ci.com/mezzio/mezzio-authorization)
[![Build Status](https://github.com/mezzio/mezzio-authorization/workflows/Continuous%20Integration/badge.svg)](https://github.com/mezzio/mezzio-authorization/actions?query=workflow%3A"Continuous+Integration")
[![Coverage Status](https://coveralls.io/repos/github/mezzio/mezzio-authorization/badge.svg?branch=master)](https://coveralls.io/github/mezzio/mezzio-authorization?branch=master)

Laminas-mezzio-authorization provides middleware for [Mezzio](https://github.com/mezzio/mezzio)
Expand Down
6 changes: 4 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
}
},
"require": {
"php": "^7.1",
"php": "^7.3 || ~8.0.0",
"laminas/laminas-zendframework-bridge": "^1.0",
"mezzio/mezzio-authentication": "^1.0",
"psr/container": "^1.0",
Expand All @@ -37,7 +37,9 @@
},
"require-dev": {
"laminas/laminas-coding-standard": "~1.0.0",
"phpunit/phpunit": "^7.0.2"
"phpspec/prophecy-phpunit": "^2.0",
"phpspec/prophecy": "^1.12",
"phpunit/phpunit": "^9.3"
},
"conflict": {
"container-interop/container-interop": "<1.2.0"
Expand Down
Loading

0 comments on commit 079ed83

Please sign in to comment.