Skip to content

Commit 1f5dcb6

Browse files
authored
Merge branch 'master' into extend-http-client-config-in-option
2 parents 7084270 + 77def43 commit 1f5dcb6

23 files changed

+535
-592
lines changed

.gitattributes

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1-
/.gitattributes export-ignore
2-
/.github/ export-ignore
3-
/.gitignore export-ignore
4-
/docs/ export-ignore
5-
/phpunit.xml export-ignore
6-
/test/ export-ignore
1+
/.gitattributes export-ignore
2+
/.github/ export-ignore
3+
/.gitignore export-ignore
4+
/CHANGELOG.md export-ignore
5+
/codecov.yml export-ignore
6+
/CODE_OF_CONDUCT.md export-ignore
7+
/CONTRIBUTING.md export-ignore
8+
/CREDITS.md export-ignore
9+
/docs/ export-ignore
10+
/phpunit.xml export-ignore
11+
/README.PROVIDER-GUIDE.md export-ignore
12+
/test/ export-ignore

.github/dependabot.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ updates:
33
- package-ecosystem: "composer"
44
directory: "/"
55
schedule:
6-
interval: "weekly"
7-
day: "thursday"
8-
versioning-strategy: "increase-if-necessary"
6+
interval: "daily"
7+
- package-ecosystem: "bundler"
8+
directory: "/docs"
9+
schedule:
10+
interval: "daily"

.github/workflows/continuous-integration.yml

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,21 @@ jobs:
1616
lint:
1717
name: "Lint"
1818
runs-on: "ubuntu-latest"
19+
20+
strategy:
21+
fail-fast: false
22+
matrix:
23+
php-version: [ '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1' ]
24+
25+
continue-on-error: ${{ matrix.php-version == '8.1' }}
26+
1927
steps:
2028
- uses: "actions/checkout@v2"
2129
- uses: "shivammathur/setup-php@v2"
2230
with:
2331
php-version: "7.4"
2432
coverage: "none"
25-
ini-values: "memory_limit=-1"
33+
ini-values: "memory_limit=-1, zend.assertions=1, error_reporting=-1, display_errors=On"
2634
tools: "composer:v2"
2735
- uses: "ramsey/composer-install@v1"
2836
- name: "Lint the PHP source code"
@@ -58,19 +66,17 @@ jobs:
5866
- "7.3"
5967
- "7.4"
6068
- "8.0"
69+
- "8.1"
6170
experimental:
6271
- false
63-
include:
64-
- php-version: "8.1"
65-
experimental: true
66-
composer-options: "--ignore-platform-reqs"
72+
6773
steps:
6874
- uses: "actions/checkout@v2"
6975
- uses: "shivammathur/setup-php@v2"
7076
with:
7177
php-version: "${{ matrix.php-version }}"
7278
coverage: "pcov"
73-
ini-values: "memory_limit=-1"
79+
ini-values: "memory_limit=-1, zend.assertions=1, error_reporting=-1, display_errors=On"
7480
tools: "composer:v2"
7581
- name: "Prepare for tests"
7682
run: "mkdir -p build/logs"
@@ -79,10 +85,5 @@ jobs:
7985
composer-options: "${{ matrix.composer-options }}"
8086
- name: "Run unit tests"
8187
run: "./vendor/bin/phpunit --colors=always --coverage-clover build/logs/clover.xml"
82-
- name: "Publish coverage report to Coveralls"
83-
continue-on-error: true
84-
env:
85-
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
86-
run: |
87-
composer global --ansi require php-coveralls/php-coveralls
88-
php-coveralls --ansi -vv --coverage_clover=build/logs/clover.xml
88+
- name: "Publish coverage report to Codecov"
89+
uses: "codecov/codecov-action@v1"

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ testing/
66
nbproject/private/
77
test/log
88
build
9+
/.phpunit.result.cache

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22

33
## 2.6.0
44

5-
_Released: TBD_
5+
_Released: 2020-10-27_
66

7-
* Support PHP 8
7+
* Indicate support for PHP 8
8+
* Allow time to be set for testing purposes
9+
[#852](https://github.com/thephpleague/oauth2-client/pull/852)
810

911
## 2.5.0
1012

CREDITS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@
44

55
Also see <https://github.com/thephpleague/oauth2-client/contributors>.
66

7-
### Current Maintainer
7+
### Current Maintainers
88

99
- [Ben Ramsey](https://github.com/ramsey)
10+
- [Woody Gilk](https://github.com/shadowhand)
1011

1112
### Contributors
1213

@@ -17,4 +18,3 @@ Also see <https://github.com/thephpleague/oauth2-client/contributors>.
1718
- [Phil Sturgeon](https://github.com/philsturgeon)
1819
- [Rudi Theunissen](https://github.com/rtheunissen)
1920
- [Tom Anderson](https://github.com/TomHAnderson)
20-
- [Woody Gilk](https://github.com/shadowhand)

README.PROVIDER-GUIDE.md

Lines changed: 0 additions & 96 deletions
This file was deleted.

0 commit comments

Comments
 (0)