Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ['8.4', '8.3', '8.2', '8.1', '8.0']
php: ['8.4', '8.3', '8.2']
wp: ['latest']
include:
- php: '8.4'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
persist-credentials: false

- name: Set up PHP
uses: shivammathur/setup-php@44454db4f0199b8b9685a5d763dc37cbf79108e1 # v2.36.0
uses: shivammathur/setup-php@ec406be512d7077f68eed36e63f4d91bc006edc4 # v2.35.4
with:
php-version: '8.3'
coverage: none
Expand All @@ -43,10 +43,10 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f3 # v6.1.0
with:
cache: 'npm'
node-version-file: '.nvmrc'
cache: 'npm'

- name: Install NPM dependencies
- name: Install npm dependencies
run: npm ci
env:
CI: true
Expand Down
2 changes: 1 addition & 1 deletion .phpcs.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
Tests for PHP version compatibility.
https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards#Recomended-additional-rulesets
-->
<config name="testVersion" value="8.0-" />
<config name="testVersion" value="8.2-" />

<!--
Tests for WordPress version compatibility.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Managing content across multiple brands, regions, or business units often result
| Requirement | Version |
|---------------|----------|
| WordPress | >= 6.8 |
| PHP | >= 8.0 |
| PHP | >= 8.2 |

---

Expand Down
7 changes: 0 additions & 7 deletions assets/src/js/utils.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
/**
* Helper function to validate if a string is a well-formed URL.
*
* @param {string} str - The string to validate as a URL.
*
* @return {boolean} True if the string is a valid URL, false otherwise.
*/
/**
* Validates if a given string is a valid URL.
*
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"composer/installers": true
},
"platform": {
"php": "8.0"
"php": "8.2"
},
"sort-packages": true,
"preferred-install": "dist",
Comment thread
justlevine marked this conversation as resolved.
Expand All @@ -38,7 +38,7 @@
}
],
"require": {
"php": "^8",
"php": "^8.2",
"algolia/algoliasearch-client-php": "^3.0"
},
"require-dev": {
Expand Down
Loading
Loading