Skip to content

Commit

Permalink
chore: update plugin php min version to 7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
theodesp committed Jan 23, 2025
1 parent 8f133f5 commit 240261e
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 24 deletions.
2 changes: 1 addition & 1 deletion plugins/faustwp/.phpcs.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

<!-- Rules: Check PHP version compatibility -->
<!-- https://github.com/PHPCompatibility/PHPCompatibility#sniffing-your-code-for-compatibility-with-specific-php-versions -->
<config name="testVersion" value="7.2-" />
<config name="testVersion" value="7.4-" />

<!-- https://github.com/PHPCompatibility/PHPCompatibilityWP -->
<rule ref="PHPCompatibilityWP" />
Expand Down
3 changes: 2 additions & 1 deletion plugins/faustwp/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
}
},
"require": {
"symfony/process": "^6.4.14"
"symfony/process": "^6.4.14",
"php": "^7.4 || ^8.0"
}
}
2 changes: 1 addition & 1 deletion plugins/faustwp/faustwp.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Text Domain: faustwp
* Domain Path: /languages
* Version: 1.6.0
* Requires PHP: 7.2
* Requires PHP: 7.4
* Requires at least: 5.7
* Update URI: false
*
Expand Down
42 changes: 21 additions & 21 deletions plugins/faustwp/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: faustjs, faust, headless, decoupled, composable-architecture
Requires at least: 5.7
Tested up to: 6.6.1
Stable tag: 1.6.0
Requires PHP: 7.2
Requires PHP: 7.4
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -52,24 +52,24 @@ plugins/faustwp/.wordpress-org/screenshot-1.png
plugins/faustwp/.wordpress-org/screenshot-2.png
plugins/faustwp/.wordpress-org/screenshot-3.png

== Changelog ==

= 1.6.0 =

### Minor Changes

- 28f1f83: Added new filter `faustwp_public_redirect_status_code`, allowing WordPress plugins and themes to choose the [HTTP status code](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status) to use when generating redirects when the [enable public route redirects](https://faustjs.org/docs/faustwp/settings#enabling-public-route-redirects) setting is active.

= 1.5.0 =

### Minor Changes

- 011cd931: - Added a custom PluginUpdater class to enable FaustWP plugin updates from an external API endpoint.

= 1.4.1 =

### Patch Changes

- e80d80af: Tested up to WordPress v6.6.1

== Changelog ==
= 1.6.0 =
### Minor Changes
- 28f1f83: Added new filter `faustwp_public_redirect_status_code`, allowing WordPress plugins and themes to choose the [HTTP status code](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status) to use when generating redirects when the [enable public route redirects](https://faustjs.org/docs/faustwp/settings#enabling-public-route-redirects) setting is active.
= 1.5.0 =
### Minor Changes
- 011cd931: - Added a custom PluginUpdater class to enable FaustWP plugin updates from an external API endpoint.
= 1.4.1 =
### Patch Changes
- e80d80af: Tested up to WordPress v6.6.1
[View the full changelog](https://github.com/wpengine/faustjs/blob/canary/plugins/faustwp/CHANGELOG.md)

0 comments on commit 240261e

Please sign in to comment.