Skip to content

Commit 5a84147

Browse files
committed
remove 5.6 dependency and fix unittest runner
1 parent de1fa5a commit 5a84147

File tree

7 files changed

+11
-9
lines changed

7 files changed

+11
-9
lines changed

.github/workflows/phpunit.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,13 @@ jobs:
1515
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=10s --health-retries=10
1616
strategy:
1717
matrix:
18-
php-versions: ['5.6', '7.0', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
18+
php-versions: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
1919
include:
2020
- wp-version: latest
21-
- wp-version: '6.2'
22-
php-versions: '5.6'
21+
- wp-version: '6.5'
22+
php-versions: '7.0'
23+
- wp-version: '6.5'
24+
php-versions: '7.1'
2325
steps:
2426
- name: Checkout
2527
uses: actions/checkout@v3

composer-php-scoper.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "pfefferle/wordpress-webmention",
33
"description": "A Webmention plugin for WordPress https://wordpress.org/plugins/webmention/",
44
"require": {
5-
"php": ">=5.6"
5+
"php": ">=7.0"
66
},
77
"type": "wordpress-plugin",
88
"license": "MIT",

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "pfefferle/wordpress-webmention",
33
"description": "A Webmention plugin for WordPress https://wordpress.org/plugins/webmention/",
44
"require": {
5-
"php": ">=5.6.0",
5+
"php": ">=7.0",
66
"composer/installers": "^1.0 || ^2.0"
77
},
88
"type": "wordpress-plugin",

languages/webmention.pot

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ msgstr ""
55
"Project-Id-Version: Webmention 5.3.2\n"
66
"Report-Msgid-Bugs-To: "
77
"https://wordpress.org/support/plugin/wordpress-webmention\n"
8-
"POT-Creation-Date: 2024-07-16 06:58:17+00:00\n"
8+
"POT-Creation-Date: 2024-07-22 09:20:10+00:00\n"
99
"MIME-Version: 1.0\n"
1010
"Content-Type: text/plain; charset=utf-8\n"
1111
"Content-Transfer-Encoding: 8bit\n"

phpcs.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<exclude-pattern>*/node_modules/*</exclude-pattern>
1212
<exclude-pattern>*/tests/*</exclude-pattern>
1313
<rule ref="PHPCompatibility"/>
14-
<config name="testVersion" value="5.6-"/>
14+
<config name="testVersion" value="7.0-"/>
1515
<rule ref="WordPress-Core" />
1616
<rule ref="PHPCompatibilityWP"/>
1717
<config name="minimum_supported_wp_version" value="4.9"/>

readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
**Requires at least:** 4.9
66
**Tested up to:** 6.6
77
**Stable tag:** 5.3.2
8-
**Requires PHP:** 5.6
8+
**Requires PHP:** 7.0
99
**License:** MIT
1010
**License URI:** https://opensource.org/licenses/MIT
1111

readme.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Tags: webmention, pingback, trackback, linkback, indieweb
55
Requires at least: 4.9
66
Tested up to: 6.6
77
Stable tag: 5.3.2
8-
Requires PHP: 5.6
8+
Requires PHP: 7.0
99
License: MIT
1010
License URI: https://opensource.org/licenses/MIT
1111

0 commit comments

Comments
 (0)