Skip to content

Commit b1dfc4d

Browse files
authored
Merge pull request scottsawyer#15 from scottsawyer/issue/14
Issue/14
2 parents acd4914 + 333cd83 commit b1dfc4d

20 files changed

Lines changed: 1134 additions & 194 deletions

.github/workflows/build-test.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,21 @@ jobs:
1919
strategy:
2020
matrix:
2121
include:
22+
- php: 8.3
23+
wp: latest
24+
- php: 8.2
25+
wp: latest
2226
- php: 8.1
2327
wp: latest
2428
- php: 8.0
2529
wp: latest
26-
- php: 7.4
27-
wp: latest
2830

2931
name: PHP ${{ matrix.php }} / WP ${{ matrix.wp }} Test
3032
steps:
3133
- name: Checkout source
3234
uses: actions/checkout@v3
3335

34-
36+
3537
- name: Install Subversion
3638
run: |
3739
sudo apt-get update
@@ -82,7 +84,7 @@ jobs:
8284
- name: Setup PHP
8385
uses: shivammathur/setup-php@v2
8486
with:
85-
php-version: 7.4
87+
php-version: 8.3
8688
extensions: mbstring, intl #optional, setup extensions
8789
ini-values: post_max_size=256M, short_open_tag=On #optional, setup php.ini configuration
8890
coverage: xdebug #optional, setup coverage driver

acf-component-manager.php

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @wordpress-plugin
88
* Plugin Name: ACF Component Manager
99
* Description: Manages ACF based components.
10-
* Version: 0.0.6
10+
* Version: 0.0.8
1111
* Author: Scott Sawyer
1212
* Text Domain: acf-component-manager
1313
*/
@@ -19,7 +19,7 @@
1919
/**
2020
* Plugin version.
2121
*/
22-
define( 'ACF_COMPONENT_MANAGER_VERSION', '0.0.6' );
22+
define( 'ACF_COMPONENT_MANAGER_VERSION', '0.0.8' );
2323

2424
/**
2525
* Minimum WordPress version.
@@ -48,6 +48,11 @@
4848
*/
4949
define( 'SETTINGS_OPTION_NAME', 'acf-component-manager-settings' );
5050

51+
/**
52+
* Sources option name.
53+
*/
54+
define( 'SOURCES_OPTION_NAME', 'acf-component-manager-sources' );
55+
5156
/**
5257
* Notices option name.
5358
*/

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "scottsawyer/acf-component-manager",
3-
"description": "Allows organizing Advanced Custom Fields into theme components.",
3+
"description": "Allows organizing Advanced Custom Fields into components.",
44
"type": "wordpress-plugin",
55
"license": "GPL-3.0-or-later",
66
"homepage": "https://github.com/scottsawyer/acf-component-manager",
@@ -10,7 +10,7 @@
1010
}
1111
],
1212
"require": {
13-
"php": ">=7.4"
13+
"php": ">=8.0"
1414
},
1515
"require-dev": {
1616
"dealerdirect/phpcodesniffer-composer-installer": "*",

0 commit comments

Comments
 (0)