Preparations for 1.4.2

Supported WP version is 4.9, updated WPCS definitions.
This commit is contained in:
Stefan Kalscheuer 2017-11-11 21:12:30 +01:00
parent f061b4c194
commit 637d5f482c
4 changed files with 17 additions and 2 deletions

2
.gitignore vendored
View File

@ -3,3 +3,5 @@ composer.lock
/node_modules/
/dist/
.idea
tests-clover.xml
tests-junit.xml

View File

@ -1,7 +1,7 @@
# Statify Blacklist #
* Contributors: Stefan Kalscheuer
* Requires at least: 4.4
* Tested up to: 4.8
* Tested up to: 4.9
* Requires PHP: 5.5
* Stable tag: 1.4.1
* License: GPLv2 or later
@ -82,6 +82,9 @@ Because of this, an IP blacklist can only be applied while processing the reques
## Changelog ##
### 1.4.2 / unreleased ###
* Minor code fixes
### 1.4.1 / 16.07.2017 ###
* Relicensed to GPLv2 or later
* Fix filter hook if referer is disabled (#9)

View File

@ -24,6 +24,7 @@
"require-dev": {
"php": ">=5.5",
"phpunit/phpunit": "*",
"wp-coding-standards/wpcs": "~0.11.0"
"phpunit/php-code-coverage": "*",
"wp-coding-standards/wpcs": "~0.14.0"
}
}

View File

@ -5,4 +5,13 @@
<directory suffix="-test.php">./test/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./inc/</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="tests-clover.xml"/>
<log type="junit" target="tests-junit.xml" logIncompleteSkipped="false"/>
</logging>
</phpunit>