Version Description
Download this release
Release Info
Developer | themeisle |
Plugin | Gutenberg Blocks and Template Library by Otter |
Version | 1.3.3 |
Comparing to | |
See all releases |
Code changes from version 1.3.2 to 1.3.3
- CHANGELOG.md +4 -0
- class-otter-blocks.php +4 -4
- otter-blocks.php +2 -2
- readme.md +7 -0
- readme.txt +7 -0
- vendor/autoload.php +1 -1
- vendor/codeinwp/gutenberg-css/CHANGELOG.md +4 -0
- vendor/codeinwp/gutenberg-css/build/build.js +1 -1
- vendor/codeinwp/gutenberg-css/load.php +1 -1
- vendor/composer/autoload_real.php +7 -7
- vendor/composer/autoload_static.php +4 -4
- vendor/composer/installed.json +11 -8
CHANGELOG.md
CHANGED
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
1 |
##### [Version 1.3.2](https://github.com/Codeinwp/otter-blocks/compare/v1.3.1...v1.3.2) (2020-01-10)
|
2 |
|
3 |
- Add Slider Transforms [#142](https://github.com/Codeinwp/otter-blocks/issues/142)
|
1 |
+
##### [Version 1.3.3](https://github.com/Codeinwp/otter-blocks/compare/v1.3.2...v1.3.3) (2020-01-19)
|
2 |
+
|
3 |
+
Fix issue with Custom CSS module not working
|
4 |
+
|
5 |
##### [Version 1.3.2](https://github.com/Codeinwp/otter-blocks/compare/v1.3.1...v1.3.2) (2020-01-10)
|
6 |
|
7 |
- Add Slider Transforms [#142](https://github.com/Codeinwp/otter-blocks/issues/142)
|
class-otter-blocks.php
CHANGED
@@ -68,10 +68,6 @@ class Otter_Blocks {
|
|
68 |
public function load_gutenberg_blocks() {
|
69 |
load_plugin_textdomain( 'otter-blocks', false, basename( dirname( __FILE__ ) ) . '/languages' );
|
70 |
|
71 |
-
if ( class_exists( '\ThemeIsle\GutenbergBlocks' ) ) {
|
72 |
-
\ThemeIsle\GutenbergBlocks::instance( $this->name );
|
73 |
-
}
|
74 |
-
|
75 |
if ( class_exists( '\ThemeIsle\GutenbergCSS' ) && get_option( 'themeisle_blocks_settings_css_module', true ) ) {
|
76 |
\ThemeIsle\GutenbergCSS::instance();
|
77 |
}
|
@@ -79,6 +75,10 @@ class Otter_Blocks {
|
|
79 |
if ( class_exists( '\ThemeIsle\GutenbergAnimation' ) && get_option( 'themeisle_blocks_settings_blocks_animation', true ) ) {
|
80 |
\ThemeIsle\GutenbergAnimation::instance();
|
81 |
}
|
|
|
|
|
|
|
|
|
82 |
}
|
83 |
|
84 |
/**
|
68 |
public function load_gutenberg_blocks() {
|
69 |
load_plugin_textdomain( 'otter-blocks', false, basename( dirname( __FILE__ ) ) . '/languages' );
|
70 |
|
|
|
|
|
|
|
|
|
71 |
if ( class_exists( '\ThemeIsle\GutenbergCSS' ) && get_option( 'themeisle_blocks_settings_css_module', true ) ) {
|
72 |
\ThemeIsle\GutenbergCSS::instance();
|
73 |
}
|
75 |
if ( class_exists( '\ThemeIsle\GutenbergAnimation' ) && get_option( 'themeisle_blocks_settings_blocks_animation', true ) ) {
|
76 |
\ThemeIsle\GutenbergAnimation::instance();
|
77 |
}
|
78 |
+
|
79 |
+
if ( class_exists( '\ThemeIsle\GutenbergBlocks' ) ) {
|
80 |
+
\ThemeIsle\GutenbergBlocks::instance( $this->name );
|
81 |
+
}
|
82 |
}
|
83 |
|
84 |
/**
|
otter-blocks.php
CHANGED
@@ -7,7 +7,7 @@
|
|
7 |
* Plugin Name: Gutenberg Blocks and Template Library by Otter
|
8 |
* Plugin URI: https://themeisle.com/plugins/otter-blocks
|
9 |
* Description: Create beautiful and attracting posts, pages, and landing pages with Gutenberg Blocks and Template Library by Otter. Otter comes with dozens of Gutenberg blocks that are all you need to build beautiful pages.
|
10 |
-
* Version: 1.3.
|
11 |
* Author: ThemeIsle
|
12 |
* Author URI: https://themeisle.com
|
13 |
* License: GPL-2.0+
|
@@ -26,7 +26,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|
26 |
define( 'OTTER_BLOCKS_BASEFILE', __FILE__ );
|
27 |
define( 'OTTER_BLOCKS_URL', plugins_url( '/', __FILE__ ) );
|
28 |
define( 'OTTER_BLOCKS_PATH', dirname( __FILE__ ) );
|
29 |
-
define( 'OTTER_BLOCKS_VERSION', '1.3.
|
30 |
define( 'OTTER_BLOCKS_DEV', false );
|
31 |
|
32 |
$vendor_file = OTTER_BLOCKS_PATH . '/vendor/autoload.php';
|
7 |
* Plugin Name: Gutenberg Blocks and Template Library by Otter
|
8 |
* Plugin URI: https://themeisle.com/plugins/otter-blocks
|
9 |
* Description: Create beautiful and attracting posts, pages, and landing pages with Gutenberg Blocks and Template Library by Otter. Otter comes with dozens of Gutenberg blocks that are all you need to build beautiful pages.
|
10 |
+
* Version: 1.3.3
|
11 |
* Author: ThemeIsle
|
12 |
* Author URI: https://themeisle.com
|
13 |
* License: GPL-2.0+
|
26 |
define( 'OTTER_BLOCKS_BASEFILE', __FILE__ );
|
27 |
define( 'OTTER_BLOCKS_URL', plugins_url( '/', __FILE__ ) );
|
28 |
define( 'OTTER_BLOCKS_PATH', dirname( __FILE__ ) );
|
29 |
+
define( 'OTTER_BLOCKS_VERSION', '1.3.3' );
|
30 |
define( 'OTTER_BLOCKS_DEV', false );
|
31 |
|
32 |
$vendor_file = OTTER_BLOCKS_PATH . '/vendor/autoload.php';
|
readme.md
CHANGED
@@ -46,6 +46,13 @@ It has:
|
|
46 |
|
47 |
## Changelog ##
|
48 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
##### [Version 1.3.2](https://github.com/Codeinwp/otter-blocks/compare/v1.3.1...v1.3.2) (2020-01-10)
|
50 |
|
51 |
- Add Slider Transforms [#142](https://github.com/Codeinwp/otter-blocks/issues/142)
|
46 |
|
47 |
## Changelog ##
|
48 |
|
49 |
+
##### [Version 1.3.3](https://github.com/Codeinwp/otter-blocks/compare/v1.3.2...v1.3.3) (2020-01-19)
|
50 |
+
|
51 |
+
Fix issue with Custom CSS module not working
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
##### [Version 1.3.2](https://github.com/Codeinwp/otter-blocks/compare/v1.3.1...v1.3.2) (2020-01-10)
|
57 |
|
58 |
- Add Slider Transforms [#142](https://github.com/Codeinwp/otter-blocks/issues/142)
|
readme.txt
CHANGED
@@ -46,6 +46,13 @@ It has:
|
|
46 |
|
47 |
== Changelog ==
|
48 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
##### [Version 1.3.2](https://github.com/Codeinwp/otter-blocks/compare/v1.3.1...v1.3.2) (2020-01-10)
|
50 |
|
51 |
- Add Slider Transforms [#142](https://github.com/Codeinwp/otter-blocks/issues/142)
|
46 |
|
47 |
== Changelog ==
|
48 |
|
49 |
+
##### [Version 1.3.3](https://github.com/Codeinwp/otter-blocks/compare/v1.3.2...v1.3.3) (2020-01-19)
|
50 |
+
|
51 |
+
Fix issue with Custom CSS module not working
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
##### [Version 1.3.2](https://github.com/Codeinwp/otter-blocks/compare/v1.3.1...v1.3.2) (2020-01-10)
|
57 |
|
58 |
- Add Slider Transforms [#142](https://github.com/Codeinwp/otter-blocks/issues/142)
|
vendor/autoload.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
-
return
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
+
return ComposerAutoloaderInitcbd4a7763149624d73d2762228551835::getLoader();
|
vendor/codeinwp/gutenberg-css/CHANGELOG.md
CHANGED
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
1 |
### [Version 1.0.7](https://github.com/Codeinwp/gutenberg-css/compare/v1.0.6...v1.0.7) (2020-01-07)
|
2 |
|
3 |
> Things are getting better every day. :rocket:
|
1 |
+
##### [Version 1.0.8](https://github.com/Codeinwp/gutenberg-css/compare/v1.0.7...v1.0.8) (2020-01-15)
|
2 |
+
|
3 |
+
Fix issue with saving CSS
|
4 |
+
|
5 |
### [Version 1.0.7](https://github.com/Codeinwp/gutenberg-css/compare/v1.0.6...v1.0.7) (2020-01-07)
|
6 |
|
7 |
> Things are getting better every day. :rocket:
|
vendor/codeinwp/gutenberg-css/build/build.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(e){var t={};function n(r){if(t[r])return t[r].exports;var
|
1 |
+
!function(e){var t={};function n(r){if(t[r])return t[r].exports;var l=t[r]={i:r,l:!1,exports:{}};return e[r].call(l.exports,l,l.exports,n),l.l=!0,l.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var l in e)n.d(r,l,function(t){return e[t]}.bind(null,l));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=2)}([function(e,t,n){},function(e,t){wp.i18n.__;var n=wp.blocks.parse,r=wp.data,l=r.select,s=r.subscribe,c="";s((function(){c="",function e(t,r){t.forEach((function(t){if(t.attributes.hasCustomCSS&&t.attributes.customCSS&&null!==t.attributes.customCSS&&(c+=t.attributes.customCSS+"\n"),"core/block"===t.name&&null!==r){var l=r.find((function(e){return t.attributes.ref===e.id}));l&&(l=n(l.content.raw),e(l,r))}void 0!==t.innerBlocks&&0<t.innerBlocks.length&&e(t.innerBlocks,r)}))}((0,(l("core/block-editor")||l("core/editor")).getBlocks)(),l("core").getEntityRecords("postType","wp_block")),function(e){var t=document.getElementById("themeisle-css-editor-styles");null===t&&((t=document.createElement("style")).setAttribute("type","text/css"),t.setAttribute("id","themeisle-css-editor-styles"),document.getElementsByTagName("head")[0].appendChild(t)),t.textContent===e||(t.textContent=e)}(c)}))},function(e,t,n){"use strict";n.r(t);n(0);var r=wp.i18n.__,l=wp.element,s=l.Fragment,c=l.useEffect,o=l.useRef,u=function(e){var t=e.attributes,n=e.setAttributes,l=e.clientId;c((function(){u();if(t.customCSS){var e=t.customCSS.replace(/.ticss-[^#\s]*/g,"selector");a.current=e}else a.current="selector {\n}\n";i.current=wp.CodeMirror(document.getElementById("themeisle-css-editor"),{value:a.current,autoCloseBrackets:!0,continueComments:!0,lineNumbers:!0,lineWrapping:!0,matchBrackets:!0,lint:!0,gutters:["CodeMirror-lint-markers"],styleActiveLine:!0,styleActiveSelected:!0,extraKeys:{"Ctrl-Space":"autocomplete","Alt-F":"findPersistent","Cmd-F":"findPersistent"}}),i.current.on("change",(function(){var e=new RegExp("selector","g"),t=i.current.getValue().replace(e,".".concat(m.current));if(a.current=t,"selector {\n}\n".replace(/\s+/g,"")===a.current.replace(/\s+/g,""))return n({customCSS:null});n({customCSS:a.current})}))}),[]),c((function(){var e=u();n({hasCustomCSS:!0,className:e})}),[t]);var u=function(){var e,n=l.substr(0,8);return null!==a.current&&"selector {\n}\n".replace(/\s+/g,"")===a.current.replace(/\s+/g,"")?t.className:(t.className?((e=t.className).includes("ticss-")||((e=e.split(" ")).push("ticss-".concat(n)),e=e.join(" ")),m.current=e.split(" "),m.current=m.current.find((function(e){return e.includes("ticss")}))):(e="ticss-".concat(n),m.current=e),e)},i=o(null),a=o(null),m=o(null);return wp.element.createElement(s,null,wp.element.createElement("p",null,r("Add your custom CSS.")),wp.element.createElement("div",{id:"themeisle-css-editor",className:"themeisle-css-editor"}),wp.element.createElement("p",null,r("Use")," ",wp.element.createElement("code",null,"selector")," ",r("to target block wrapper.")),wp.element.createElement("p",null,r("")),wp.element.createElement("p",null,r("Example:")),wp.element.createElement("pre",{className:"themeisle-css-editor-help"},"selector {\n background: #000;\n}\n\nselector img {\n border-radius: 100%;\n}"),wp.element.createElement("p",null,r("You can also use other CSS syntax here, such as media queries.")))},i=(n(1),lodash.assign),a=wp.i18n.__,m=wp.blocks.hasBlockSupport,p=wp.components.PanelBody,d=wp.compose.createHigherOrderComponent,f=(wp.blockEditor||wp.editor).InspectorControls,b=wp.element.Fragment,S=wp.hooks.addFilter,w=d((function(e){return function(t){return m(t.name,"customClassName",!0)&&t.isSelected?wp.element.createElement(b,null,wp.element.createElement(e,t),wp.element.createElement(f,null,wp.element.createElement(p,{title:a("Custom CSS"),initialOpen:!1},wp.element.createElement(u,{clientId:t.clientId,setAttributes:t.setAttributes,attributes:t.attributes})))):wp.element.createElement(e,t)}}),"withInspectorControl");S("blocks.registerBlockType","themeisle-custom-css/attribute",(function(e){return m(e,"customClassName",!0)&&(e.attributes=i(e.attributes,{hasCustomCSS:{type:"boolean",default:!1},customCSS:{type:"string",default:null}})),e})),S("editor.BlockEdit","themeisle-custom-css/with-inspector-controls",w)}]);
|
vendor/codeinwp/gutenberg-css/load.php
CHANGED
@@ -8,7 +8,7 @@
|
|
8 |
* @since 1.0.0
|
9 |
*/
|
10 |
|
11 |
-
define( 'THEMEISLE_GUTENBERG_CSS_VERSION', '1.0.
|
12 |
define( 'THEMEISLE_GUTENBERG_CSS_DEV', false );
|
13 |
if ( function_exists( 'add_action' ) ) {
|
14 |
add_action(
|
8 |
* @since 1.0.0
|
9 |
*/
|
10 |
|
11 |
+
define( 'THEMEISLE_GUTENBERG_CSS_VERSION', '1.0.8' );
|
12 |
define( 'THEMEISLE_GUTENBERG_CSS_DEV', false );
|
13 |
if ( function_exists( 'add_action' ) ) {
|
14 |
add_action(
|
vendor/composer/autoload_real.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
-
class
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
@@ -19,15 +19,15 @@ class ComposerAutoloaderInit1dbb9707d3044888f1f55d52ea340e8d
|
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
-
spl_autoload_register(array('
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
-
spl_autoload_unregister(array('
|
25 |
|
26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
27 |
if ($useStaticLoader) {
|
28 |
require_once __DIR__ . '/autoload_static.php';
|
29 |
|
30 |
-
call_user_func(\Composer\Autoload\
|
31 |
} else {
|
32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
33 |
foreach ($map as $namespace => $path) {
|
@@ -48,19 +48,19 @@ class ComposerAutoloaderInit1dbb9707d3044888f1f55d52ea340e8d
|
|
48 |
$loader->register(true);
|
49 |
|
50 |
if ($useStaticLoader) {
|
51 |
-
$includeFiles = Composer\Autoload\
|
52 |
} else {
|
53 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
54 |
}
|
55 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
56 |
-
|
57 |
}
|
58 |
|
59 |
return $loader;
|
60 |
}
|
61 |
}
|
62 |
|
63 |
-
function
|
64 |
{
|
65 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
66 |
require $file;
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
+
class ComposerAutoloaderInitcbd4a7763149624d73d2762228551835
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInitcbd4a7763149624d73d2762228551835', 'loadClassLoader'), true, true);
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInitcbd4a7763149624d73d2762228551835', 'loadClassLoader'));
|
25 |
|
26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
27 |
if ($useStaticLoader) {
|
28 |
require_once __DIR__ . '/autoload_static.php';
|
29 |
|
30 |
+
call_user_func(\Composer\Autoload\ComposerStaticInitcbd4a7763149624d73d2762228551835::getInitializer($loader));
|
31 |
} else {
|
32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
33 |
foreach ($map as $namespace => $path) {
|
48 |
$loader->register(true);
|
49 |
|
50 |
if ($useStaticLoader) {
|
51 |
+
$includeFiles = Composer\Autoload\ComposerStaticInitcbd4a7763149624d73d2762228551835::$files;
|
52 |
} else {
|
53 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
54 |
}
|
55 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
56 |
+
composerRequirecbd4a7763149624d73d2762228551835($fileIdentifier, $file);
|
57 |
}
|
58 |
|
59 |
return $loader;
|
60 |
}
|
61 |
}
|
62 |
|
63 |
+
function composerRequirecbd4a7763149624d73d2762228551835($fileIdentifier, $file)
|
64 |
{
|
65 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
66 |
require $file;
|
vendor/composer/autoload_static.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
-
class
|
8 |
{
|
9 |
public static $files = array (
|
10 |
'4940672e65e7c6c88ed7150711580427' => __DIR__ . '/..' . '/codeinwp/gutenberg-animation/load.php',
|
@@ -36,9 +36,9 @@ class ComposerStaticInit1dbb9707d3044888f1f55d52ea340e8d
|
|
36 |
public static function getInitializer(ClassLoader $loader)
|
37 |
{
|
38 |
return \Closure::bind(function () use ($loader) {
|
39 |
-
$loader->prefixLengthsPsr4 =
|
40 |
-
$loader->prefixDirsPsr4 =
|
41 |
-
$loader->classMap =
|
42 |
|
43 |
}, null, ClassLoader::class);
|
44 |
}
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
+
class ComposerStaticInitcbd4a7763149624d73d2762228551835
|
8 |
{
|
9 |
public static $files = array (
|
10 |
'4940672e65e7c6c88ed7150711580427' => __DIR__ . '/..' . '/codeinwp/gutenberg-animation/load.php',
|
36 |
public static function getInitializer(ClassLoader $loader)
|
37 |
{
|
38 |
return \Closure::bind(function () use ($loader) {
|
39 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInitcbd4a7763149624d73d2762228551835::$prefixLengthsPsr4;
|
40 |
+
$loader->prefixDirsPsr4 = ComposerStaticInitcbd4a7763149624d73d2762228551835::$prefixDirsPsr4;
|
41 |
+
$loader->classMap = ComposerStaticInitcbd4a7763149624d73d2762228551835::$classMap;
|
42 |
|
43 |
}, null, ClassLoader::class);
|
44 |
}
|
vendor/composer/installed.json
CHANGED
@@ -95,28 +95,31 @@
|
|
95 |
},
|
96 |
{
|
97 |
"name": "codeinwp/gutenberg-css",
|
98 |
-
"version": "1.0.
|
99 |
-
"version_normalized": "1.0.
|
100 |
"source": {
|
101 |
"type": "git",
|
102 |
"url": "https://github.com/Codeinwp/gutenberg-css.git",
|
103 |
-
"reference": "
|
104 |
},
|
105 |
"dist": {
|
106 |
"type": "zip",
|
107 |
-
"url": "https://api.github.com/repos/Codeinwp/gutenberg-css/zipball/
|
108 |
-
"reference": "
|
109 |
"shasum": ""
|
110 |
},
|
111 |
"require-dev": {
|
112 |
-
"automattic/vipwpcs": "^0.3.0",
|
113 |
-
"dealerdirect/phpcodesniffer-composer-installer": "0.
|
114 |
"phpcompatibility/php-compatibility": "^9",
|
115 |
"squizlabs/php_codesniffer": "^3.3",
|
116 |
"wp-coding-standards/wpcs": "^1"
|
117 |
},
|
118 |
-
"time": "2020-01-
|
119 |
"type": "library",
|
|
|
|
|
|
|
120 |
"installation-source": "dist",
|
121 |
"autoload": {
|
122 |
"files": [
|
95 |
},
|
96 |
{
|
97 |
"name": "codeinwp/gutenberg-css",
|
98 |
+
"version": "1.0.8",
|
99 |
+
"version_normalized": "1.0.8.0",
|
100 |
"source": {
|
101 |
"type": "git",
|
102 |
"url": "https://github.com/Codeinwp/gutenberg-css.git",
|
103 |
+
"reference": "da13824df56b8be9227584c587605063249c23a1"
|
104 |
},
|
105 |
"dist": {
|
106 |
"type": "zip",
|
107 |
+
"url": "https://api.github.com/repos/Codeinwp/gutenberg-css/zipball/da13824df56b8be9227584c587605063249c23a1",
|
108 |
+
"reference": "da13824df56b8be9227584c587605063249c23a1",
|
109 |
"shasum": ""
|
110 |
},
|
111 |
"require-dev": {
|
112 |
+
"automattic/vipwpcs": "^0.3.0 || ^1.0.0",
|
113 |
+
"dealerdirect/phpcodesniffer-composer-installer": "0.5.0",
|
114 |
"phpcompatibility/php-compatibility": "^9",
|
115 |
"squizlabs/php_codesniffer": "^3.3",
|
116 |
"wp-coding-standards/wpcs": "^1"
|
117 |
},
|
118 |
+
"time": "2020-01-15T08:46:44+00:00",
|
119 |
"type": "library",
|
120 |
+
"extra": {
|
121 |
+
"installer-disable": "true"
|
122 |
+
},
|
123 |
"installation-source": "dist",
|
124 |
"autoload": {
|
125 |
"files": [
|