Download the PHP package technote/gutenberg-packages without Composer
On this page you can find all versions of the php package technote/gutenberg-packages. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download technote/gutenberg-packages
More information about technote/gutenberg-packages
Files in technote/gutenberg-packages
Package gutenberg-packages
Short Description Library to get gutenberg package info
License GPL-2.0+
Homepage https://github.com/technote-space/gutenberg-packages
Informations about the package gutenberg-packages
Gutenberg Packages
This repository (Gutenberg Packages
) manages versions of Gutenberg.
Gutenberg Packages
is wrapper of this library.
Gutenberg Packages
fetches version data from
- Library
- API (daily update)
- Gutenberg repository
and cache for a day.
(When the state (WP Core version or Gutenberg plugin state) changes, the cache is cleared).
Table of Contents
Details
- [Requirement](#requirement) - [Installation](#installation) - [Usage](#usage) - [Motivation](#motivation) - [Dependency](#dependency) - [Author](#author)Requirement
- >= PHP 5.6
- >= WordPress v5.5
Installation
Usage
Motivation
There is no WP Core function to get version of Block Editor packages.
So it is hard to consider compatibility.
For example
Gutenberg v5.9 outputs message bellow.
If your plugin uses wp-block-editor
package like bellow, you get an error under WP v5.2.
From JavaScript, to check existence of property can solve this problem easily.
But you also need to know package validity from PHP because wp_enqueue_script
needs dependencies.
If you pass wp-block-editor
to wp_enqueue_script
under WP v5.2, script is not enqueued.
This library can help this problems.
If you use under WP v5.1, wp-block-editor
is filtered.
And if you use over WP v5.2, wp-block-editor
is not filtered.
You can also pass the package versions to JavaScript via wp_localize_script
.