Skip to content

Commit

Permalink
Add PHP 8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBernskiold committed May 30, 2021
1 parent 7e770f5 commit 44440b6
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 14 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. This projec

## [Unreleased]

## [1.0.9] - 2021-05-30

### Added

- PHP 8 support

## [1.0.8] - 2020-07-25

### Changed
Expand Down
28 changes: 14 additions & 14 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,27 @@
"name": "bernskioldmedia/wp-dependency-checker",
"description": "A modern way of checking for other plugin dependencies for your WordPress plugin.",
"keywords": [
"wordpress"
"wordpress"
],
"homepage": "https://bernskioldmedia.com",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Bernskiold Media",
"email": "[email protected]"
},
{
"name": "Erik Bernskiold",
"email": "[email protected]"
}
{
"name": "Bernskiold Media",
"email": "[email protected]"
},
{
"name": "Erik Bernskiold",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1"
"php": "^7.1|^8.0"
},
"autoload": {
"psr-4": {
"BernskioldMedia\\WP\\WP_Dependency_Checker\\": "src/"
}
"psr-4": {
"BernskioldMedia\\WP\\WP_Dependency_Checker\\": "src/"
}
}
}
}

0 comments on commit 44440b6

Please sign in to comment.