Skip to content

Commit

Permalink
remove 5.6 dependency and fix unittest runner
Browse files Browse the repository at this point in the history
  • Loading branch information
pfefferle committed Jul 22, 2024
1 parent de1fa5a commit 5a84147
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 9 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,13 @@ jobs:
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=10s --health-retries=10
strategy:
matrix:
php-versions: ['5.6', '7.0', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
php-versions: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
include:
- wp-version: latest
- wp-version: '6.2'
php-versions: '5.6'
- wp-version: '6.5'
php-versions: '7.0'
- wp-version: '6.5'
php-versions: '7.1'
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion composer-php-scoper.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "pfefferle/wordpress-webmention",
"description": "A Webmention plugin for WordPress https://wordpress.org/plugins/webmention/",
"require": {
"php": ">=5.6"
"php": ">=7.0"
},
"type": "wordpress-plugin",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "pfefferle/wordpress-webmention",
"description": "A Webmention plugin for WordPress https://wordpress.org/plugins/webmention/",
"require": {
"php": ">=5.6.0",
"php": ">=7.0",
"composer/installers": "^1.0 || ^2.0"
},
"type": "wordpress-plugin",
Expand Down
2 changes: 1 addition & 1 deletion languages/webmention.pot
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ msgstr ""
"Project-Id-Version: Webmention 5.3.2\n"
"Report-Msgid-Bugs-To: "
"https://wordpress.org/support/plugin/wordpress-webmention\n"
"POT-Creation-Date: 2024-07-16 06:58:17+00:00\n"
"POT-Creation-Date: 2024-07-22 09:20:10+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
Expand Down
2 changes: 1 addition & 1 deletion phpcs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<exclude-pattern>*/node_modules/*</exclude-pattern>
<exclude-pattern>*/tests/*</exclude-pattern>
<rule ref="PHPCompatibility"/>
<config name="testVersion" value="5.6-"/>
<config name="testVersion" value="7.0-"/>
<rule ref="WordPress-Core" />
<rule ref="PHPCompatibilityWP"/>
<config name="minimum_supported_wp_version" value="4.9"/>
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
**Requires at least:** 4.9
**Tested up to:** 6.6
**Stable tag:** 5.3.2
**Requires PHP:** 5.6
**Requires PHP:** 7.0
**License:** MIT
**License URI:** https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: webmention, pingback, trackback, linkback, indieweb
Requires at least: 4.9
Tested up to: 6.6
Stable tag: 5.3.2
Requires PHP: 5.6
Requires PHP: 7.0
License: MIT
License URI: https://opensource.org/licenses/MIT

Expand Down

0 comments on commit 5a84147

Please sign in to comment.