Skip to content

Commit ae7d1b2

Browse files
authored
Merge pull request #7 from BeAPI/ver/1.0.2
Ver/1.0.2
2 parents c45a1f5 + 8cf8d1d commit ae7d1b2

6 files changed

Lines changed: 62 additions & 59 deletions

File tree

.plugin-data

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"version": "1.0.1",
2+
"version": "1.0.2",
33
"slug": "blockparty-faq"
44
}

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,6 @@
66

77
### 1.0.1 - 2024-04-03
88
* fix css variable names
9+
10+
### 1.0.2 - 2024-06-06
11+
* Add support for PHP 8.2

block.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"apiVersion": 2,
33
"name": "blockparty/faq",
4-
"version": "1.0.1",
4+
"version": "1.0.2",
55
"title": "Faq",
66
"category": "design",
77
"icon": "format-chat",

blockparty-faq.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Description: A Gutenberg block for SEO friendly FAQ in an accessible accordion
55
* Requires at least: 6.2
66
* Requires PHP: 8.1
7-
* Version: 1.0.1
7+
* Version: 1.0.2
88
* Plugin URI: https://beapi.fr
99
* Author: Be API Technical team
1010
* Author URI: https://beapi.fr
@@ -41,7 +41,7 @@
4141
}
4242

4343
// Plugin constants
44-
define( 'BLOCKPARTY_FAQ_VERSION', '1.0.1' );
44+
define( 'BLOCKPARTY_FAQ_VERSION', '1.0.2' );
4545

4646
// Plugin URL and PATH
4747
define( 'BLOCKPARTY_FAQ_DIR', plugin_dir_path( __FILE__ ) );

composer.json

Lines changed: 54 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,58 @@
11
{
2-
"name": "beapi/blockparty-faq",
3-
"description": "A Gutenberg block for SEO friendly FAQ in an accessible accordion.",
4-
"type": "wordpress-plugin",
5-
"keywords": [
6-
"gutenberg",
7-
"block",
8-
"faq"
9-
],
10-
"license": "GPL-3.0-or-later",
11-
"authors": [
12-
{
13-
"name": "BeAPI",
14-
"email": "technique@beapi.fr"
15-
}
16-
],
17-
"config": {
18-
"optimize-autoloader": true,
19-
"preferred-install": "dist",
20-
"sort-packages": true,
21-
"allow-plugins": {
22-
"dealerdirect/phpcodesniffer-composer-installer": true,
23-
"composer/installers": true,
24-
"phpro/grumphp-shim": true
2+
"name": "beapi/blockparty-faq",
3+
"description": "A Gutenberg block for SEO friendly FAQ in an accessible accordion.",
4+
"type": "wordpress-plugin",
5+
"keywords": [
6+
"gutenberg",
7+
"block",
8+
"faq"
9+
],
10+
"license": "GPL-3.0-or-later",
11+
"authors": [
12+
{
13+
"name": "BeAPI",
14+
"email": "technique@beapi.fr"
15+
}
16+
],
17+
"config": {
18+
"optimize-autoloader": true,
19+
"preferred-install": "dist",
20+
"sort-packages": true,
21+
"allow-plugins": {
22+
"dealerdirect/phpcodesniffer-composer-installer": true,
23+
"composer/installers": true,
24+
"phpro/grumphp-shim": true
25+
},
26+
"platform": {
27+
"php": "8.1"
28+
}
29+
},
30+
"require": {
31+
"php": "^8.1 | ^8.2",
32+
"ext-json": "*",
33+
"composer/installers": "^1.0 || ^2.0"
34+
},
35+
"require-dev": {
36+
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
37+
"humanmade/psalm-plugin-wordpress": "^3.0",
38+
"overtrue/phplint": "^9.1",
39+
"php-parallel-lint/php-parallel-lint": "^1.3",
40+
"php-stubs/wordpress-seo-stubs": "^20.5",
41+
"phpcompatibility/phpcompatibility-wp": "^2.1",
42+
"phpro/grumphp-shim": "^1.5",
43+
"roave/security-advisories": "dev-latest",
44+
"roots/wordpress-no-content": "^6.0",
45+
"vimeo/psalm": "^5.20",
46+
"wp-coding-standards/wpcs": "^3.0"
47+
},
48+
"scripts": {
49+
"cs": "./vendor/bin/phpcs",
50+
"cb": "./vendor/bin/phpcbf",
51+
"psalm": "./vendor/bin/psalm"
2552
},
26-
"platform": {
27-
"php": "8.1"
53+
"scripts-descriptions": {
54+
"cs": "Run PHP CodeSniffer on codebase using custom ruleset.",
55+
"cb": "Run PHP Code Beautifier and Fixer on codebase using custom ruleset.",
56+
"psalm": "Run psalm on codebase using custom ruleset."
2857
}
29-
},
30-
"require": {
31-
"php": "8.1.*",
32-
"ext-json": "*",
33-
"composer/installers": "^1.0 || ^2.0"
34-
},
35-
"require-dev": {
36-
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
37-
"humanmade/psalm-plugin-wordpress": "^3.0",
38-
"overtrue/phplint": "^9.1",
39-
"php-parallel-lint/php-parallel-lint": "^1.3",
40-
"php-stubs/wordpress-seo-stubs": "^20.5",
41-
"phpcompatibility/phpcompatibility-wp": "^2.1",
42-
"phpro/grumphp-shim": "^1.5",
43-
"roave/security-advisories": "dev-latest",
44-
"roots/wordpress-no-content": "^6.0",
45-
"vimeo/psalm": "^5.20",
46-
"wp-coding-standards/wpcs": "^3.0"
47-
},
48-
"scripts": {
49-
"cs": "./vendor/bin/phpcs",
50-
"cb": "./vendor/bin/phpcbf",
51-
"psalm": "./vendor/bin/psalm"
52-
},
53-
"scripts-descriptions": {
54-
"cs": "Run PHP CodeSniffer on codebase using custom ruleset.",
55-
"cb": "Run PHP Code Beautifier and Fixer on codebase using custom ruleset.",
56-
"psalm": "Run psalm on codebase using custom ruleset."
57-
}
5858
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "blockparty-faq",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "SEO friendly FAQ module in an accessible accordion",
55
"author": "Be API Technical team",
66
"license": "GPL-2.0-or-later",

0 commit comments

Comments
 (0)