Skip to content

Commit 44440b6

Browse files
Add PHP 8 support
1 parent 7e770f5 commit 44440b6

File tree

2 files changed

+20
-14
lines changed

2 files changed

+20
-14
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. This projec
44

55
## [Unreleased]
66

7+
## [1.0.9] - 2021-05-30
8+
9+
### Added
10+
11+
- PHP 8 support
12+
713
## [1.0.8] - 2020-07-25
814

915
### Changed

composer.json

+14-14
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,27 @@
22
"name": "bernskioldmedia/wp-dependency-checker",
33
"description": "A modern way of checking for other plugin dependencies for your WordPress plugin.",
44
"keywords": [
5-
"wordpress"
5+
"wordpress"
66
],
77
"homepage": "https://bernskioldmedia.com",
88
"type": "library",
99
"license": "MIT",
1010
"authors": [
11-
{
12-
"name": "Bernskiold Media",
13-
"email": "info@bernskioldmedia.com"
14-
},
15-
{
16-
"name": "Erik Bernskiold",
17-
"email": "erik@bernskioldmedia.com"
18-
}
11+
{
12+
"name": "Bernskiold Media",
13+
"email": "info@bernskioldmedia.com"
14+
},
15+
{
16+
"name": "Erik Bernskiold",
17+
"email": "erik@bernskioldmedia.com"
18+
}
1919
],
2020
"require": {
21-
"php": "^7.1"
21+
"php": "^7.1|^8.0"
2222
},
2323
"autoload": {
24-
"psr-4": {
25-
"BernskioldMedia\\WP\\WP_Dependency_Checker\\": "src/"
26-
}
24+
"psr-4": {
25+
"BernskioldMedia\\WP\\WP_Dependency_Checker\\": "src/"
26+
}
2727
}
28-
}
28+
}

0 commit comments

Comments
 (0)