Skip to content

Commit 771bd99

Browse files
authored
Merge pull request #10 from unleashedtech/php-8
Allow PHP 8; bump dependencies
2 parents de5643a + 4acb0d6 commit 771bd99

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

.github/workflows/test.yml

+3-5
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ name: "Test"
33
on:
44
pull_request:
55
push:
6-
branches:
7-
- "master"
86
schedule:
97
- cron: "0 8 * * *"
108

@@ -56,7 +54,7 @@ jobs:
5654
runs-on: ubuntu-18.04
5755
strategy:
5856
matrix:
59-
php-version: ['7.1', '7.2', '7.3', '7.4']
57+
php-version: ['7.1', '7.2', '7.3', '7.4', '8.0']
6058

6159
steps:
6260
- uses: actions/checkout@v2
@@ -78,7 +76,7 @@ jobs:
7876
runs-on: ubuntu-18.04
7977
strategy:
8078
matrix:
81-
php-version: ['7.1', '7.2', '7.3', '7.4']
79+
php-version: ['7.1', '7.2', '7.3', '7.4', '8.0']
8280

8381
steps:
8482
- uses: actions/checkout@v2
@@ -99,7 +97,7 @@ jobs:
9997
runs-on: ubuntu-18.04
10098
strategy:
10199
matrix:
102-
php-version: ['7.1', '7.2', '7.3', '7.4']
100+
php-version: ['7.1', '7.2', '7.3', '7.4', '8.0']
103101

104102
steps:
105103
- uses: actions/checkout@v2

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@
3131
}
3232
},
3333
"require": {
34-
"php": "^7.1",
34+
"php": "^7.1 || ^8.0",
3535
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
36-
"slevomat/coding-standard": "~6.4.0",
37-
"squizlabs/php_codesniffer": "^3.4.0"
36+
"slevomat/coding-standard": "~6.4.1",
37+
"squizlabs/php_codesniffer": "^3.5.8"
3838
},
3939
"require-dev": {
4040
"symfony/phpunit-bridge": "^5.1"

0 commit comments

Comments
 (0)