Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bumped WP and PHP Minimums #80

Merged
merged 9 commits into from
Jan 5, 2023
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/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Set PHP version
uses: shivammathur/setup-php@v1
with:
php-version: '7.2'
php-version: '7.4'
coverage: none
- name: composer install
run: composer install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Set PHP version
uses: shivammathur/setup-php@v1
with:
php-version: '7.2'
php-version: '7.4'
coverage: none

- name: Install dependencies
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

## Overview

Convert to Blocks is a WordPress plugin that transforms classic editor content to blocks on-the-fly. After installing Gutenberg or upgrading to WordPress 5.0+, your content will be displayed in "Classic Editor Blocks". While these blocks are completely functional and will display fine on the frontend of your website, they do not empower editors to fully make use of the block editing experience. In order to do so, your classic editor posts need to be converted to blocks. This plugin does that for you "on the fly". When an editor goes to edit a classic post, the content will be parsed into blocks. When the editor saves the post, the new structure will be saved into the database. This strategy reduces risk as you are only altering database values for content that needs to be changed.
Convert to Blocks is a WordPress plugin that transforms classic editor content to blocks on-the-fly. After installing Gutenberg or upgrading to WordPress 5.0+, your content will be displayed in "Classic Editor Blocks". While these blocks are completely functional and will display fine on the frontend of your website, they do not empower editors to fully make use of the block editing experience. In order to do so, your classic editor posts need to be converted to blocks. This plugin does that for you "on the fly". When an editor goes to edit a classic post, the content will be parsed into blocks. When the editor saves the post, the new structure will be saved into the database. This strategy reduces risk as you are only altering database values for content that needs to be changed.

### Bulk migration of Classic Editor items to the Block Editor

Expand All @@ -16,9 +16,9 @@ The `wp convert-to-blocks start` [WP-CLI command](https://github.com/10up/conver

## Requirements

* PHP 7.0+
* WordPress 5.4+
* Inner Blocks Transforms is only supported with the Gutenberg Plugin 10.9.0+
- PHP 7.4+
- WordPress 5.7+
- Inner Blocks Transforms is only supported with the Gutenberg Plugin 10.9.0+

## Installation

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
}
],
"require": {
"php": ">=7.2"
"php": ">=7.4"
},
"autoload": {
"psr-4": {
"ConvertToBlocks\\": "includes/ConvertToBlocks/"
}
},
"require-dev": {
"phpunit/phpunit": "~7.5.0",
"phpunit/phpunit": "~9.5.0",
"10up/phpcs-composer": "dev-master",
"yoast/phpunit-polyfills": "^1.0"
},
Expand Down
Loading