Version Description
- 2020-12-09 =
- Fixed: Compatibility with WP 5.6
Download this release
Release Info
Developer | themefusecom |
Plugin | Brizy – Page Builder |
Version | 2.2.2 |
Comparing to | |
See all releases |
Code changes from version 2.2.1 to 2.2.2
- README.md +4 -1
- admin/static/css/style.css +5 -1
- admin/static/js/script.js +1 -2
- brizy.php +2 -2
- readme.txt +4 -1
- vendor/autoload.php +1 -1
- vendor/composer/ClassLoader.php +2 -2
- vendor/composer/InstalledVersions.php +283 -0
- vendor/composer/autoload_classmap.php +1 -0
- vendor/composer/autoload_real.php +10 -8
- vendor/composer/autoload_static.php +9 -4
- vendor/composer/installed.json +413 -402
- vendor/composer/installed.php +88 -0
- vendor/composer/platform_check.php +26 -0
README.md
CHANGED
@@ -3,7 +3,7 @@ Contributors: themefuse<br>
|
|
3 |
Requires at least: 4.5<br>
|
4 |
Tested up to: 5.5<br>
|
5 |
Requires PHP: 5.6<br>
|
6 |
-
Stable tag: 2.2.
|
7 |
License: GPLv3<br>
|
8 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
@@ -118,6 +118,9 @@ $bodyHtml = apply_filters( 'brizy_content', $html->get_body(), Brizy_Editor_Proj
|
|
118 |
|
119 |
## Changelog
|
120 |
|
|
|
|
|
|
|
121 |
### 2.2.1 - 2020-12-07
|
122 |
* Improved: Templates images
|
123 |
* Updated: Google Fonts
|
3 |
Requires at least: 4.5<br>
|
4 |
Tested up to: 5.5<br>
|
5 |
Requires PHP: 5.6<br>
|
6 |
+
Stable tag: 2.2.2<br>
|
7 |
License: GPLv3<br>
|
8 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
118 |
|
119 |
## Changelog
|
120 |
|
121 |
+
### 2.2.2 - 2020-12-09
|
122 |
+
* Fixed: Compatibility with WP 5.6
|
123 |
+
|
124 |
### 2.2.1 - 2020-12-07
|
125 |
* Improved: Templates images
|
126 |
* Updated: Google Fonts
|
admin/static/css/style.css
CHANGED
@@ -1,7 +1,11 @@
|
|
1 |
.brizy-editor-enabled #insert-media-button,
|
2 |
.brizy-editor-enabled #wp-content-editor-tools .wp-editor-tabs,
|
3 |
.brizy-editor-enabled #wp-content-editor-container .quicktags-toolbar,
|
4 |
-
.brizy-editor-enabled #wp-content-editor-container .wp-editor-area
|
|
|
|
|
|
|
|
|
5 |
display: none;
|
6 |
}
|
7 |
|
1 |
.brizy-editor-enabled #insert-media-button,
|
2 |
.brizy-editor-enabled #wp-content-editor-tools .wp-editor-tabs,
|
3 |
.brizy-editor-enabled #wp-content-editor-container .quicktags-toolbar,
|
4 |
+
.brizy-editor-enabled #wp-content-editor-container .wp-editor-area,
|
5 |
+
.brizy-editor-enabled .editor-block-list__layout,
|
6 |
+
.brizy-editor-enabled .block-editor-block-list__layout,
|
7 |
+
.brizy-editor-enabled .block-editor-writing-flow__click-redirect,
|
8 |
+
.brizy-editor-enabled .edit-post-text-editor__body .editor-post-text-editor {
|
9 |
display: none;
|
10 |
}
|
11 |
|
admin/static/js/script.js
CHANGED
@@ -167,9 +167,8 @@ jQuery(document).ready(function ($) {
|
|
167 |
guten.find( '.edit-post-header-toolbar' ).append( $( '#brizy-gutenberg-btn-switch-mode' ).html() );
|
168 |
|
169 |
if ( html ) {
|
170 |
-
guten.find( '.block-editor-block-list__layout' ).hide();
|
171 |
-
guten.find( '.block-editor-writing-flow__click-redirect' ).hide();
|
172 |
guten.find( '.edit-post-visual-editor .block-editor-writing-flow' ).append( html );
|
|
|
173 |
}
|
174 |
},
|
175 |
|
167 |
guten.find( '.edit-post-header-toolbar' ).append( $( '#brizy-gutenberg-btn-switch-mode' ).html() );
|
168 |
|
169 |
if ( html ) {
|
|
|
|
|
170 |
guten.find( '.edit-post-visual-editor .block-editor-writing-flow' ).append( html );
|
171 |
+
guten.find( '.editor-post-text-editor' ).after( html );
|
172 |
}
|
173 |
},
|
174 |
|
brizy.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Plugin URI: https://brizy.io/
|
6 |
* Author: Brizy.io
|
7 |
* Author URI: https://brizy.io/
|
8 |
-
* Version: 2.2.
|
9 |
* Text Domain: brizy
|
10 |
* License: GPLv3
|
11 |
* Domain Path: /languages
|
@@ -19,7 +19,7 @@ if ( isset( $_SERVER['HTTP_X_FORWARDED_PROTO'] ) && stripos( $_SERVER['HTTP_X_FO
|
|
19 |
|
20 |
define( 'BRIZY_DEVELOPMENT', false );
|
21 |
define( 'BRIZY_LOG', false );
|
22 |
-
define( 'BRIZY_VERSION', '2.2.
|
23 |
define( 'BRIZY_EDITOR_VERSION', BRIZY_DEVELOPMENT ? 'dev' : '163-wp' );
|
24 |
define( 'BRIZY_SYNC_VERSION', '163' );
|
25 |
define( 'BRIZY_FILE', __FILE__ );
|
5 |
* Plugin URI: https://brizy.io/
|
6 |
* Author: Brizy.io
|
7 |
* Author URI: https://brizy.io/
|
8 |
+
* Version: 2.2.2
|
9 |
* Text Domain: brizy
|
10 |
* License: GPLv3
|
11 |
* Domain Path: /languages
|
19 |
|
20 |
define( 'BRIZY_DEVELOPMENT', false );
|
21 |
define( 'BRIZY_LOG', false );
|
22 |
+
define( 'BRIZY_VERSION', '2.2.2' );
|
23 |
define( 'BRIZY_EDITOR_VERSION', BRIZY_DEVELOPMENT ? 'dev' : '163-wp' );
|
24 |
define( 'BRIZY_SYNC_VERSION', '163' );
|
25 |
define( 'BRIZY_FILE', __FILE__ );
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: brizy, page builder, editor, visual editor, unyson, wysiwyg, landing page,
|
|
4 |
Requires at least: 4.5
|
5 |
Tested up to: 5.5
|
6 |
Requires PHP: 5.6
|
7 |
-
Stable tag: 2.2.
|
8 |
License: GPLv3
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -139,6 +139,9 @@ The progress you're making while building your page is always backed up in the c
|
|
139 |
|
140 |
== Changelog ==
|
141 |
|
|
|
|
|
|
|
142 |
= 2.2.1 - 2020-12-07 =
|
143 |
* Improved: Templates images
|
144 |
* Updated: Google Fonts
|
4 |
Requires at least: 4.5
|
5 |
Tested up to: 5.5
|
6 |
Requires PHP: 5.6
|
7 |
+
Stable tag: 2.2.2
|
8 |
License: GPLv3
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
139 |
|
140 |
== Changelog ==
|
141 |
|
142 |
+
= 2.2.2 - 2020-12-09 =
|
143 |
+
* Fixed: Compatibility with WP 5.6
|
144 |
+
|
145 |
= 2.2.1 - 2020-12-07 =
|
146 |
* Improved: Templates images
|
147 |
* Updated: Google Fonts
|
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 ComposerAutoloaderInit49e4a3171ec59d34f3e6978f4bc85ef3::getLoader();
|
vendor/composer/ClassLoader.php
CHANGED
@@ -37,8 +37,8 @@ namespace Composer\Autoload;
|
|
37 |
*
|
38 |
* @author Fabien Potencier <fabien@symfony.com>
|
39 |
* @author Jordi Boggiano <j.boggiano@seld.be>
|
40 |
-
* @see
|
41 |
-
* @see
|
42 |
*/
|
43 |
class ClassLoader
|
44 |
{
|
37 |
*
|
38 |
* @author Fabien Potencier <fabien@symfony.com>
|
39 |
* @author Jordi Boggiano <j.boggiano@seld.be>
|
40 |
+
* @see https://www.php-fig.org/psr/psr-0/
|
41 |
+
* @see https://www.php-fig.org/psr/psr-4/
|
42 |
*/
|
43 |
class ClassLoader
|
44 |
{
|
vendor/composer/InstalledVersions.php
ADDED
@@ -0,0 +1,283 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
|
4 |
+
|
5 |
+
|
6 |
+
|
7 |
+
|
8 |
+
|
9 |
+
|
10 |
+
|
11 |
+
|
12 |
+
|
13 |
+
namespace Composer;
|
14 |
+
|
15 |
+
use Composer\Semver\VersionParser;
|
16 |
+
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
|
21 |
+
|
22 |
+
class InstalledVersions
|
23 |
+
{
|
24 |
+
private static $installed = array (
|
25 |
+
'root' =>
|
26 |
+
array (
|
27 |
+
'pretty_version' => 'dev-master',
|
28 |
+
'version' => 'dev-master',
|
29 |
+
'aliases' =>
|
30 |
+
array (
|
31 |
+
),
|
32 |
+
'reference' => 'd7d4f7eebb5bede553405d2ef602066466a08f7d',
|
33 |
+
'name' => 'brizy/brizy',
|
34 |
+
),
|
35 |
+
'versions' =>
|
36 |
+
array (
|
37 |
+
'bagrinsergiu/brizy-migration-utils' =>
|
38 |
+
array (
|
39 |
+
'pretty_version' => '1.4.2',
|
40 |
+
'version' => '1.4.2.0',
|
41 |
+
'aliases' =>
|
42 |
+
array (
|
43 |
+
),
|
44 |
+
'reference' => '6af1f8e3e181d1d262bd32cb96bf08ef9ead59df',
|
45 |
+
),
|
46 |
+
'brizy/brizy' =>
|
47 |
+
array (
|
48 |
+
'pretty_version' => 'dev-master',
|
49 |
+
'version' => 'dev-master',
|
50 |
+
'aliases' =>
|
51 |
+
array (
|
52 |
+
),
|
53 |
+
'reference' => 'd7d4f7eebb5bede553405d2ef602066466a08f7d',
|
54 |
+
),
|
55 |
+
'enshrined/svg-sanitize' =>
|
56 |
+
array (
|
57 |
+
'pretty_version' => '0.13.3',
|
58 |
+
'version' => '0.13.3.0',
|
59 |
+
'aliases' =>
|
60 |
+
array (
|
61 |
+
),
|
62 |
+
'reference' => 'bc66593f255b7d2613d8f22041180036979b6403',
|
63 |
+
),
|
64 |
+
'knplabs/gaufrette' =>
|
65 |
+
array (
|
66 |
+
'pretty_version' => 'v0.7.0',
|
67 |
+
'version' => '0.7.0.0',
|
68 |
+
'aliases' =>
|
69 |
+
array (
|
70 |
+
),
|
71 |
+
'reference' => 'a0627e91e8753f442eea6560cb347151cd306b2c',
|
72 |
+
),
|
73 |
+
'select2/select2' =>
|
74 |
+
array (
|
75 |
+
'pretty_version' => '4.1.0-beta.1',
|
76 |
+
'version' => '4.1.0.0-beta1',
|
77 |
+
'aliases' =>
|
78 |
+
array (
|
79 |
+
),
|
80 |
+
'reference' => '1c0c2a94d1b70a185baff5b13c654411e2c01339',
|
81 |
+
),
|
82 |
+
'shortpixel/shortpixel-php' =>
|
83 |
+
array (
|
84 |
+
'pretty_version' => 'dev-master',
|
85 |
+
'version' => 'dev-master',
|
86 |
+
'aliases' =>
|
87 |
+
array (
|
88 |
+
),
|
89 |
+
'reference' => '8ddbdda375dc82c1f6623d3e9acc8ac7177fc6c4',
|
90 |
+
),
|
91 |
+
'symfony/polyfill-ctype' =>
|
92 |
+
array (
|
93 |
+
'pretty_version' => 'dev-master',
|
94 |
+
'version' => 'dev-master',
|
95 |
+
'aliases' =>
|
96 |
+
array (
|
97 |
+
0 => '1.18.x-dev',
|
98 |
+
),
|
99 |
+
'reference' => '1c302646f6efc070cd46856e600e5e0684d6b454',
|
100 |
+
),
|
101 |
+
'twig/twig' =>
|
102 |
+
array (
|
103 |
+
'pretty_version' => 'v1.42.5',
|
104 |
+
'version' => '1.42.5.0',
|
105 |
+
'aliases' =>
|
106 |
+
array (
|
107 |
+
),
|
108 |
+
'reference' => '87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e',
|
109 |
+
),
|
110 |
+
),
|
111 |
+
);
|
112 |
+
|
113 |
+
|
114 |
+
|
115 |
+
|
116 |
+
|
117 |
+
|
118 |
+
|
119 |
+
public static function getInstalledPackages()
|
120 |
+
{
|
121 |
+
return array_keys(self::$installed['versions']);
|
122 |
+
}
|
123 |
+
|
124 |
+
|
125 |
+
|
126 |
+
|
127 |
+
|
128 |
+
|
129 |
+
|
130 |
+
|
131 |
+
|
132 |
+
public static function isInstalled($packageName)
|
133 |
+
{
|
134 |
+
return isset(self::$installed['versions'][$packageName]);
|
135 |
+
}
|
136 |
+
|
137 |
+
|
138 |
+
|
139 |
+
|
140 |
+
|
141 |
+
|
142 |
+
|
143 |
+
|
144 |
+
|
145 |
+
|
146 |
+
|
147 |
+
|
148 |
+
|
149 |
+
|
150 |
+
public static function satisfies(VersionParser $parser, $packageName, $constraint)
|
151 |
+
{
|
152 |
+
$constraint = $parser->parseConstraints($constraint);
|
153 |
+
$provided = $parser->parseConstraints(self::getVersionRanges($packageName));
|
154 |
+
|
155 |
+
return $provided->matches($constraint);
|
156 |
+
}
|
157 |
+
|
158 |
+
|
159 |
+
|
160 |
+
|
161 |
+
|
162 |
+
|
163 |
+
|
164 |
+
|
165 |
+
|
166 |
+
|
167 |
+
public static function getVersionRanges($packageName)
|
168 |
+
{
|
169 |
+
if (!isset(self::$installed['versions'][$packageName])) {
|
170 |
+
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
|
171 |
+
}
|
172 |
+
|
173 |
+
$ranges = array();
|
174 |
+
if (isset(self::$installed['versions'][$packageName]['pretty_version'])) {
|
175 |
+
$ranges[] = self::$installed['versions'][$packageName]['pretty_version'];
|
176 |
+
}
|
177 |
+
if (array_key_exists('aliases', self::$installed['versions'][$packageName])) {
|
178 |
+
$ranges = array_merge($ranges, self::$installed['versions'][$packageName]['aliases']);
|
179 |
+
}
|
180 |
+
if (array_key_exists('replaced', self::$installed['versions'][$packageName])) {
|
181 |
+
$ranges = array_merge($ranges, self::$installed['versions'][$packageName]['replaced']);
|
182 |
+
}
|
183 |
+
if (array_key_exists('provided', self::$installed['versions'][$packageName])) {
|
184 |
+
$ranges = array_merge($ranges, self::$installed['versions'][$packageName]['provided']);
|
185 |
+
}
|
186 |
+
|
187 |
+
return implode(' || ', $ranges);
|
188 |
+
}
|
189 |
+
|
190 |
+
|
191 |
+
|
192 |
+
|
193 |
+
|
194 |
+
public static function getVersion($packageName)
|
195 |
+
{
|
196 |
+
if (!isset(self::$installed['versions'][$packageName])) {
|
197 |
+
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
|
198 |
+
}
|
199 |
+
|
200 |
+
if (!isset(self::$installed['versions'][$packageName]['version'])) {
|
201 |
+
return null;
|
202 |
+
}
|
203 |
+
|
204 |
+
return self::$installed['versions'][$packageName]['version'];
|
205 |
+
}
|
206 |
+
|
207 |
+
|
208 |
+
|
209 |
+
|
210 |
+
|
211 |
+
public static function getPrettyVersion($packageName)
|
212 |
+
{
|
213 |
+
if (!isset(self::$installed['versions'][$packageName])) {
|
214 |
+
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
|
215 |
+
}
|
216 |
+
|
217 |
+
if (!isset(self::$installed['versions'][$packageName]['pretty_version'])) {
|
218 |
+
return null;
|
219 |
+
}
|
220 |
+
|
221 |
+
return self::$installed['versions'][$packageName]['pretty_version'];
|
222 |
+
}
|
223 |
+
|
224 |
+
|
225 |
+
|
226 |
+
|
227 |
+
|
228 |
+
public static function getReference($packageName)
|
229 |
+
{
|
230 |
+
if (!isset(self::$installed['versions'][$packageName])) {
|
231 |
+
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
|
232 |
+
}
|
233 |
+
|
234 |
+
if (!isset(self::$installed['versions'][$packageName]['reference'])) {
|
235 |
+
return null;
|
236 |
+
}
|
237 |
+
|
238 |
+
return self::$installed['versions'][$packageName]['reference'];
|
239 |
+
}
|
240 |
+
|
241 |
+
|
242 |
+
|
243 |
+
|
244 |
+
|
245 |
+
public static function getRootPackage()
|
246 |
+
{
|
247 |
+
return self::$installed['root'];
|
248 |
+
}
|
249 |
+
|
250 |
+
|
251 |
+
|
252 |
+
|
253 |
+
|
254 |
+
|
255 |
+
|
256 |
+
public static function getRawData()
|
257 |
+
{
|
258 |
+
return self::$installed;
|
259 |
+
}
|
260 |
+
|
261 |
+
|
262 |
+
|
263 |
+
|
264 |
+
|
265 |
+
|
266 |
+
|
267 |
+
|
268 |
+
|
269 |
+
|
270 |
+
|
271 |
+
|
272 |
+
|
273 |
+
|
274 |
+
|
275 |
+
|
276 |
+
|
277 |
+
|
278 |
+
|
279 |
+
public static function reload($data)
|
280 |
+
{
|
281 |
+
self::$installed = $data;
|
282 |
+
}
|
283 |
+
}
|
vendor/composer/autoload_classmap.php
CHANGED
@@ -6,4 +6,5 @@ $vendorDir = dirname(dirname(__FILE__));
|
|
6 |
$baseDir = dirname($vendorDir);
|
7 |
|
8 |
return array(
|
|
|
9 |
);
|
6 |
$baseDir = dirname($vendorDir);
|
7 |
|
8 |
return array(
|
9 |
+
'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
|
10 |
);
|
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 |
|
@@ -22,15 +22,17 @@ class ComposerAutoloaderInit7f9f76d6b2fae33cf82ee11b0bb47b4c
|
|
22 |
return self::$loader;
|
23 |
}
|
24 |
|
25 |
-
|
|
|
|
|
26 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
27 |
-
spl_autoload_unregister(array('
|
28 |
|
29 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
30 |
if ($useStaticLoader) {
|
31 |
-
|
32 |
|
33 |
-
call_user_func(\Composer\Autoload\
|
34 |
} else {
|
35 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
36 |
foreach ($map as $namespace => $path) {
|
@@ -51,19 +53,19 @@ class ComposerAutoloaderInit7f9f76d6b2fae33cf82ee11b0bb47b4c
|
|
51 |
$loader->register(true);
|
52 |
|
53 |
if ($useStaticLoader) {
|
54 |
-
$includeFiles = Composer\Autoload\
|
55 |
} else {
|
56 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
57 |
}
|
58 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
59 |
-
|
60 |
}
|
61 |
|
62 |
return $loader;
|
63 |
}
|
64 |
}
|
65 |
|
66 |
-
function
|
67 |
{
|
68 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
69 |
require $file;
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
+
class ComposerAutoloaderInit49e4a3171ec59d34f3e6978f4bc85ef3
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
22 |
return self::$loader;
|
23 |
}
|
24 |
|
25 |
+
require __DIR__ . '/platform_check.php';
|
26 |
+
|
27 |
+
spl_autoload_register(array('ComposerAutoloaderInit49e4a3171ec59d34f3e6978f4bc85ef3', 'loadClassLoader'), true, true);
|
28 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
29 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit49e4a3171ec59d34f3e6978f4bc85ef3', 'loadClassLoader'));
|
30 |
|
31 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
32 |
if ($useStaticLoader) {
|
33 |
+
require __DIR__ . '/autoload_static.php';
|
34 |
|
35 |
+
call_user_func(\Composer\Autoload\ComposerStaticInit49e4a3171ec59d34f3e6978f4bc85ef3::getInitializer($loader));
|
36 |
} else {
|
37 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
38 |
foreach ($map as $namespace => $path) {
|
53 |
$loader->register(true);
|
54 |
|
55 |
if ($useStaticLoader) {
|
56 |
+
$includeFiles = Composer\Autoload\ComposerStaticInit49e4a3171ec59d34f3e6978f4bc85ef3::$files;
|
57 |
} else {
|
58 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
59 |
}
|
60 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
61 |
+
composerRequire49e4a3171ec59d34f3e6978f4bc85ef3($fileIdentifier, $file);
|
62 |
}
|
63 |
|
64 |
return $loader;
|
65 |
}
|
66 |
}
|
67 |
|
68 |
+
function composerRequire49e4a3171ec59d34f3e6978f4bc85ef3($fileIdentifier, $file)
|
69 |
{
|
70 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
71 |
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 |
'320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
|
@@ -71,12 +71,17 @@ class ComposerStaticInit7f9f76d6b2fae33cf82ee11b0bb47b4c
|
|
71 |
),
|
72 |
);
|
73 |
|
|
|
|
|
|
|
|
|
74 |
public static function getInitializer(ClassLoader $loader)
|
75 |
{
|
76 |
return \Closure::bind(function () use ($loader) {
|
77 |
-
$loader->prefixLengthsPsr4 =
|
78 |
-
$loader->prefixDirsPsr4 =
|
79 |
-
$loader->prefixesPsr0 =
|
|
|
80 |
|
81 |
}, null, ClassLoader::class);
|
82 |
}
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
+
class ComposerStaticInit49e4a3171ec59d34f3e6978f4bc85ef3
|
8 |
{
|
9 |
public static $files = array (
|
10 |
'320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
|
71 |
),
|
72 |
);
|
73 |
|
74 |
+
public static $classMap = array (
|
75 |
+
'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
|
76 |
+
);
|
77 |
+
|
78 |
public static function getInitializer(ClassLoader $loader)
|
79 |
{
|
80 |
return \Closure::bind(function () use ($loader) {
|
81 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInit49e4a3171ec59d34f3e6978f4bc85ef3::$prefixLengthsPsr4;
|
82 |
+
$loader->prefixDirsPsr4 = ComposerStaticInit49e4a3171ec59d34f3e6978f4bc85ef3::$prefixDirsPsr4;
|
83 |
+
$loader->prefixesPsr0 = ComposerStaticInit49e4a3171ec59d34f3e6978f4bc85ef3::$prefixesPsr0;
|
84 |
+
$loader->classMap = ComposerStaticInit49e4a3171ec59d34f3e6978f4bc85ef3::$classMap;
|
85 |
|
86 |
}, null, ClassLoader::class);
|
87 |
}
|
vendor/composer/installed.json
CHANGED
@@ -1,406 +1,417 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
"
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
"
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
"
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
"
|
25 |
-
"
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
"
|
30 |
-
"
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
"
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
"
|
51 |
-
"
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
"
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
"
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
"
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
"
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
"
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
"
|
94 |
-
"
|
95 |
-
"
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
"
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
"
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
"
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
"
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
"abstraction",
|
174 |
-
"
|
175 |
-
"
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
"
|
185 |
-
"
|
186 |
-
"
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
"
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
"
|
202 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
203 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
204 |
"files": [
|
205 |
-
"
|
206 |
-
"dist/js/i18n/*.js",
|
207 |
-
"dist/css/select2.css"
|
208 |
]
|
209 |
-
}
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
"license": [
|
214 |
-
"MIT"
|
215 |
-
],
|
216 |
-
"description": "Select2 is a jQuery based replacement for select boxes.",
|
217 |
-
"homepage": "https://select2.org/"
|
218 |
-
},
|
219 |
-
{
|
220 |
-
"name": "shortpixel/shortpixel-php",
|
221 |
-
"version": "dev-master",
|
222 |
-
"version_normalized": "9999999-dev",
|
223 |
-
"source": {
|
224 |
-
"type": "git",
|
225 |
-
"url": "https://github.com/short-pixel-optimizer/shortpixel-php.git",
|
226 |
-
"reference": "8ddbdda375dc82c1f6623d3e9acc8ac7177fc6c4"
|
227 |
-
},
|
228 |
-
"dist": {
|
229 |
-
"type": "zip",
|
230 |
-
"url": "https://api.github.com/repos/short-pixel-optimizer/shortpixel-php/zipball/8ddbdda375dc82c1f6623d3e9acc8ac7177fc6c4",
|
231 |
-
"reference": "8ddbdda375dc82c1f6623d3e9acc8ac7177fc6c4",
|
232 |
-
"shasum": ""
|
233 |
-
},
|
234 |
-
"require": {
|
235 |
-
"ext-curl": "*",
|
236 |
-
"ext-json": "*",
|
237 |
-
"lib-curl": ">=7.20.0",
|
238 |
-
"php": ">=5.3.0"
|
239 |
-
},
|
240 |
-
"require-dev": {
|
241 |
-
"phpunit/phpunit": "~4.0",
|
242 |
-
"symfony/yaml": "~2.0"
|
243 |
-
},
|
244 |
-
"time": "2020-07-02T09:32:42+00:00",
|
245 |
-
"type": "library",
|
246 |
-
"installation-source": "source",
|
247 |
-
"autoload": {
|
248 |
-
"files": [
|
249 |
-
"lib/ShortPixel.php",
|
250 |
-
"lib/ShortPixel/Exception.php"
|
251 |
],
|
252 |
-
"
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
"
|
271 |
-
|
272 |
-
|
273 |
-
"
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
"
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
"
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
"
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
"
|
304 |
-
"
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
"
|
335 |
-
|
336 |
-
|
337 |
-
"
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
"version_normalized": "1.42.5.0",
|
344 |
-
"source": {
|
345 |
-
"type": "git",
|
346 |
-
"url": "https://github.com/twigphp/Twig.git",
|
347 |
-
"reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e"
|
348 |
-
},
|
349 |
-
"dist": {
|
350 |
-
"type": "zip",
|
351 |
-
"url": "https://api.github.com/repos/twigphp/Twig/zipball/87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
|
352 |
-
"reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
|
353 |
-
"shasum": ""
|
354 |
-
},
|
355 |
-
"require": {
|
356 |
-
"php": ">=5.5.0",
|
357 |
-
"symfony/polyfill-ctype": "^1.8"
|
358 |
-
},
|
359 |
-
"require-dev": {
|
360 |
-
"psr/container": "^1.0",
|
361 |
-
"symfony/phpunit-bridge": "^4.4|^5.0"
|
362 |
-
},
|
363 |
-
"time": "2020-02-11T05:59:23+00:00",
|
364 |
-
"type": "library",
|
365 |
-
"extra": {
|
366 |
-
"branch-alias": {
|
367 |
-
"dev-master": "1.42-dev"
|
368 |
-
}
|
369 |
-
},
|
370 |
-
"installation-source": "dist",
|
371 |
-
"autoload": {
|
372 |
-
"psr-0": {
|
373 |
-
"Twig_": "lib/"
|
374 |
-
},
|
375 |
-
"psr-4": {
|
376 |
-
"Twig\\": "src/"
|
377 |
-
}
|
378 |
-
},
|
379 |
-
"notification-url": "https://packagist.org/downloads/",
|
380 |
-
"license": [
|
381 |
-
"BSD-3-Clause"
|
382 |
-
],
|
383 |
-
"authors": [
|
384 |
-
{
|
385 |
-
"name": "Fabien Potencier",
|
386 |
-
"email": "fabien@symfony.com",
|
387 |
-
"homepage": "http://fabien.potencier.org",
|
388 |
-
"role": "Lead Developer"
|
389 |
-
},
|
390 |
-
{
|
391 |
-
"name": "Twig Team",
|
392 |
-
"role": "Contributors"
|
393 |
-
},
|
394 |
-
{
|
395 |
-
"name": "Armin Ronacher",
|
396 |
-
"email": "armin.ronacher@active-4.com",
|
397 |
-
"role": "Project Founder"
|
398 |
-
}
|
399 |
-
],
|
400 |
-
"description": "Twig, the flexible, fast, and secure template language for PHP",
|
401 |
-
"homepage": "https://twig.symfony.com",
|
402 |
-
"keywords": [
|
403 |
-
"templating"
|
404 |
-
]
|
405 |
-
}
|
406 |
-
]
|
1 |
+
{
|
2 |
+
"packages": [
|
3 |
+
{
|
4 |
+
"name": "bagrinsergiu/brizy-migration-utils",
|
5 |
+
"version": "1.4.2",
|
6 |
+
"version_normalized": "1.4.2.0",
|
7 |
+
"source": {
|
8 |
+
"type": "git",
|
9 |
+
"url": "git@github.com:bagrinsergiu/brizy-migration-utils.git",
|
10 |
+
"reference": "6af1f8e3e181d1d262bd32cb96bf08ef9ead59df"
|
11 |
+
},
|
12 |
+
"dist": {
|
13 |
+
"type": "zip",
|
14 |
+
"url": "https://api.github.com/repos/bagrinsergiu/brizy-migration-utils/zipball/6af1f8e3e181d1d262bd32cb96bf08ef9ead59df",
|
15 |
+
"reference": "6af1f8e3e181d1d262bd32cb96bf08ef9ead59df",
|
16 |
+
"shasum": ""
|
17 |
+
},
|
18 |
+
"require-dev": {
|
19 |
+
"phpunit/phpunit": "8.2.1"
|
20 |
+
},
|
21 |
+
"time": "2020-05-12T15:14:00+00:00",
|
22 |
+
"type": "library",
|
23 |
+
"installation-source": "dist",
|
24 |
+
"autoload": {
|
25 |
+
"psr-0": {
|
26 |
+
"Brizy": "src/"
|
27 |
+
}
|
28 |
+
},
|
29 |
+
"autoload-dev": {
|
30 |
+
"classmap": [
|
31 |
+
"tests/"
|
32 |
+
]
|
33 |
+
},
|
34 |
+
"authors": [
|
35 |
+
{
|
36 |
+
"name": "Alex Zaharia",
|
37 |
+
"email": "alecszaharia@gmail.com"
|
38 |
+
}
|
39 |
+
],
|
40 |
+
"description": "Data migration utils",
|
41 |
+
"support": {
|
42 |
+
"source": "https://github.com/bagrinsergiu/brizy-migration-utils/tree/1.4.2",
|
43 |
+
"issues": "https://github.com/bagrinsergiu/brizy-migration-utils/issues"
|
44 |
+
},
|
45 |
+
"install-path": "../bagrinsergiu/brizy-migration-utils"
|
46 |
+
},
|
47 |
+
{
|
48 |
+
"name": "enshrined/svg-sanitize",
|
49 |
+
"version": "0.13.3",
|
50 |
+
"version_normalized": "0.13.3.0",
|
51 |
+
"source": {
|
52 |
+
"type": "git",
|
53 |
+
"url": "https://github.com/darylldoyle/svg-sanitizer.git",
|
54 |
+
"reference": "bc66593f255b7d2613d8f22041180036979b6403"
|
55 |
+
},
|
56 |
+
"dist": {
|
57 |
+
"type": "zip",
|
58 |
+
"url": "https://api.github.com/repos/darylldoyle/svg-sanitizer/zipball/bc66593f255b7d2613d8f22041180036979b6403",
|
59 |
+
"reference": "bc66593f255b7d2613d8f22041180036979b6403",
|
60 |
+
"shasum": ""
|
61 |
+
},
|
62 |
+
"require": {
|
63 |
+
"ext-dom": "*",
|
64 |
+
"ext-libxml": "*"
|
65 |
+
},
|
66 |
+
"require-dev": {
|
67 |
+
"codeclimate/php-test-reporter": "^0.1.2",
|
68 |
+
"phpunit/phpunit": "^6"
|
69 |
+
},
|
70 |
+
"time": "2020-01-20T01:34:17+00:00",
|
71 |
+
"type": "library",
|
72 |
+
"installation-source": "dist",
|
73 |
+
"autoload": {
|
74 |
+
"psr-4": {
|
75 |
+
"enshrined\\svgSanitize\\": "src"
|
76 |
+
}
|
77 |
+
},
|
78 |
+
"notification-url": "https://packagist.org/downloads/",
|
79 |
+
"license": [
|
80 |
+
"GPL-2.0-or-later"
|
81 |
+
],
|
82 |
+
"authors": [
|
83 |
+
{
|
84 |
+
"name": "Daryll Doyle",
|
85 |
+
"email": "daryll@enshrined.co.uk"
|
86 |
+
}
|
87 |
+
],
|
88 |
+
"description": "An SVG sanitizer for PHP",
|
89 |
+
"install-path": "../enshrined/svg-sanitize"
|
90 |
+
},
|
91 |
+
{
|
92 |
+
"name": "knplabs/gaufrette",
|
93 |
+
"version": "v0.7.0",
|
94 |
+
"version_normalized": "0.7.0.0",
|
95 |
+
"source": {
|
96 |
+
"type": "git",
|
97 |
+
"url": "https://github.com/KnpLabs/Gaufrette.git",
|
98 |
+
"reference": "a0627e91e8753f442eea6560cb347151cd306b2c"
|
99 |
+
},
|
100 |
+
"dist": {
|
101 |
+
"type": "zip",
|
102 |
+
"url": "https://api.github.com/repos/KnpLabs/Gaufrette/zipball/a0627e91e8753f442eea6560cb347151cd306b2c",
|
103 |
+
"reference": "a0627e91e8753f442eea6560cb347151cd306b2c",
|
104 |
+
"shasum": ""
|
105 |
+
},
|
106 |
+
"require": {
|
107 |
+
"php": ">=5.6"
|
108 |
+
},
|
109 |
+
"conflict": {
|
110 |
+
"microsoft/windowsazure": "<0.4.3"
|
111 |
+
},
|
112 |
+
"require-dev": {
|
113 |
+
"akeneo/phpspec-skip-example-extension": "~1.2",
|
114 |
+
"amazonwebservices/aws-sdk-for-php": "1.5.*",
|
115 |
+
"aws/aws-sdk-php": "^2.4.12||~3",
|
116 |
+
"doctrine/dbal": ">=2.3",
|
117 |
+
"dropbox-php/dropbox-php": "*",
|
118 |
+
"google/apiclient": "~1.1.3",
|
119 |
+
"league/flysystem": "~1.0",
|
120 |
+
"microsoft/azure-storage-blob": "^1.0",
|
121 |
+
"mikey179/vfsstream": "~1.2.0",
|
122 |
+
"mongodb/mongodb": "^1.1",
|
123 |
+
"phpseclib/phpseclib": "^2.0",
|
124 |
+
"phpspec/phpspec": "~2.4",
|
125 |
+
"phpunit/phpunit": "^5.6.8",
|
126 |
+
"rackspace/php-opencloud": "^1.9.2"
|
127 |
+
},
|
128 |
+
"suggest": {
|
129 |
+
"ext-curl": "*",
|
130 |
+
"ext-fileinfo": "This extension is used to automatically detect the content-type of a file in the AwsS3, OpenCloud, AzureBlogStorage and GoogleCloudStorage adapters",
|
131 |
+
"ext-mbstring": "*",
|
132 |
+
"gaufrette/aws-s3-adapter": "to use AwsS3 adapter (supports SDK v2 and v3)",
|
133 |
+
"gaufrette/azure-blob-storage-adapter": "to use AzureBlobStorage adapter",
|
134 |
+
"gaufrette/doctrine-dbal-adapter": "to use DBAL adapter",
|
135 |
+
"gaufrette/flysystem-adapter": "to use Flysystem adapter",
|
136 |
+
"gaufrette/ftp-adapter": "to use Ftp adapter",
|
137 |
+
"gaufrette/gridfs-adapter": "to use GridFS adapter",
|
138 |
+
"gaufrette/in-memory-adapter": "to use InMemory adapter",
|
139 |
+
"gaufrette/local-adapter": "to use Local adapter",
|
140 |
+
"gaufrette/opencloud-adapter": "to use Opencloud adapter",
|
141 |
+
"gaufrette/phpseclib-sftp-adapter": "to use PhpseclibSftp adapter",
|
142 |
+
"gaufrette/zip-adapter": "to use Zip adapter",
|
143 |
+
"google/apiclient": "to use GoogleCloudStorage adapter",
|
144 |
+
"knplabs/knp-gaufrette-bundle": "to use with Symfony2"
|
145 |
+
},
|
146 |
+
"time": "2018-08-30T13:26:15+00:00",
|
147 |
+
"type": "library",
|
148 |
+
"extra": {
|
149 |
+
"branch-alias": {
|
150 |
+
"dev-master": "0.7.x-dev"
|
151 |
+
}
|
152 |
+
},
|
153 |
+
"installation-source": "dist",
|
154 |
+
"autoload": {
|
155 |
+
"psr-0": {
|
156 |
+
"Gaufrette": "src/"
|
157 |
+
}
|
158 |
+
},
|
159 |
+
"notification-url": "https://packagist.org/downloads/",
|
160 |
+
"license": [
|
161 |
+
"MIT"
|
162 |
+
],
|
163 |
+
"authors": [
|
164 |
+
{
|
165 |
+
"name": "The contributors",
|
166 |
+
"homepage": "http://github.com/knplabs/Gaufrette/contributors"
|
167 |
+
},
|
168 |
+
{
|
169 |
+
"name": "KnpLabs Team",
|
170 |
+
"homepage": "http://knplabs.com"
|
171 |
+
}
|
172 |
+
],
|
173 |
+
"description": "PHP library that provides a filesystem abstraction layer",
|
174 |
+
"homepage": "http://knplabs.com",
|
175 |
+
"keywords": [
|
176 |
+
"abstraction",
|
177 |
+
"file",
|
178 |
+
"filesystem",
|
179 |
+
"media"
|
180 |
+
],
|
181 |
+
"install-path": "../knplabs/gaufrette"
|
182 |
+
},
|
183 |
+
{
|
184 |
+
"name": "select2/select2",
|
185 |
+
"version": "4.1.0-beta.1",
|
186 |
+
"version_normalized": "4.1.0.0-beta1",
|
187 |
+
"source": {
|
188 |
+
"type": "git",
|
189 |
+
"url": "https://github.com/select2/select2.git",
|
190 |
+
"reference": "1c0c2a94d1b70a185baff5b13c654411e2c01339"
|
191 |
+
},
|
192 |
+
"dist": {
|
193 |
+
"type": "zip",
|
194 |
+
"url": "https://api.github.com/repos/select2/select2/zipball/1c0c2a94d1b70a185baff5b13c654411e2c01339",
|
195 |
+
"reference": "1c0c2a94d1b70a185baff5b13c654411e2c01339",
|
196 |
+
"shasum": ""
|
197 |
+
},
|
198 |
+
"time": "2020-05-02T22:37:21+00:00",
|
199 |
+
"type": "component",
|
200 |
+
"extra": {
|
201 |
+
"component": {
|
202 |
+
"scripts": [
|
203 |
+
"dist/js/select2.js"
|
204 |
+
],
|
205 |
+
"styles": [
|
206 |
+
"dist/css/select2.css"
|
207 |
+
],
|
208 |
+
"files": [
|
209 |
+
"dist/js/select2.js",
|
210 |
+
"dist/js/i18n/*.js",
|
211 |
+
"dist/css/select2.css"
|
212 |
+
]
|
213 |
+
}
|
214 |
+
},
|
215 |
+
"installation-source": "dist",
|
216 |
+
"notification-url": "https://packagist.org/downloads/",
|
217 |
+
"license": [
|
218 |
+
"MIT"
|
219 |
+
],
|
220 |
+
"description": "Select2 is a jQuery based replacement for select boxes.",
|
221 |
+
"homepage": "https://select2.org/",
|
222 |
+
"install-path": "../select2/select2"
|
223 |
+
},
|
224 |
+
{
|
225 |
+
"name": "shortpixel/shortpixel-php",
|
226 |
+
"version": "dev-master",
|
227 |
+
"version_normalized": "dev-master",
|
228 |
+
"source": {
|
229 |
+
"type": "git",
|
230 |
+
"url": "https://github.com/short-pixel-optimizer/shortpixel-php.git",
|
231 |
+
"reference": "8ddbdda375dc82c1f6623d3e9acc8ac7177fc6c4"
|
232 |
+
},
|
233 |
+
"dist": {
|
234 |
+
"type": "zip",
|
235 |
+
"url": "https://api.github.com/repos/short-pixel-optimizer/shortpixel-php/zipball/8ddbdda375dc82c1f6623d3e9acc8ac7177fc6c4",
|
236 |
+
"reference": "8ddbdda375dc82c1f6623d3e9acc8ac7177fc6c4",
|
237 |
+
"shasum": ""
|
238 |
+
},
|
239 |
+
"require": {
|
240 |
+
"ext-curl": "*",
|
241 |
+
"ext-json": "*",
|
242 |
+
"lib-curl": ">=7.20.0",
|
243 |
+
"php": ">=5.3.0"
|
244 |
+
},
|
245 |
+
"require-dev": {
|
246 |
+
"phpunit/phpunit": "~4.0",
|
247 |
+
"symfony/yaml": "~2.0"
|
248 |
+
},
|
249 |
+
"time": "2020-07-02T09:32:42+00:00",
|
250 |
+
"type": "library",
|
251 |
+
"installation-source": "source",
|
252 |
+
"autoload": {
|
253 |
+
"files": [
|
254 |
+
"lib/ShortPixel.php",
|
255 |
+
"lib/ShortPixel/Exception.php"
|
256 |
],
|
257 |
+
"psr-4": {
|
258 |
+
"ShortPixel\\": "lib/ShortPixel/"
|
259 |
+
}
|
260 |
+
},
|
261 |
+
"notification-url": "https://packagist.org/downloads/",
|
262 |
+
"license": [
|
263 |
+
"MIT"
|
264 |
+
],
|
265 |
+
"authors": [
|
266 |
+
{
|
267 |
+
"name": "Simon Duduica",
|
268 |
+
"email": "simon@shortpixel.com"
|
269 |
+
}
|
270 |
+
],
|
271 |
+
"description": "ShortPixel PHP SDK. Read more at https://shortpixel.com/api-tools",
|
272 |
+
"homepage": "https://shortpixel.com/api",
|
273 |
+
"keywords": [
|
274 |
+
"api",
|
275 |
+
"compress",
|
276 |
+
"images",
|
277 |
+
"optimize",
|
278 |
+
"shortpixel"
|
279 |
+
],
|
280 |
+
"install-path": "../shortpixel/shortpixel-php"
|
281 |
+
},
|
282 |
+
{
|
283 |
+
"name": "symfony/polyfill-ctype",
|
284 |
+
"version": "dev-master",
|
285 |
+
"version_normalized": "dev-master",
|
286 |
+
"source": {
|
287 |
+
"type": "git",
|
288 |
+
"url": "https://github.com/symfony/polyfill-ctype.git",
|
289 |
+
"reference": "1c302646f6efc070cd46856e600e5e0684d6b454"
|
290 |
+
},
|
291 |
+
"dist": {
|
292 |
+
"type": "zip",
|
293 |
+
"url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/1c302646f6efc070cd46856e600e5e0684d6b454",
|
294 |
+
"reference": "1c302646f6efc070cd46856e600e5e0684d6b454",
|
295 |
+
"shasum": ""
|
296 |
+
},
|
297 |
+
"require": {
|
298 |
+
"php": ">=5.3.3"
|
299 |
+
},
|
300 |
+
"suggest": {
|
301 |
+
"ext-ctype": "For best performance"
|
302 |
+
},
|
303 |
+
"time": "2020-07-14T12:35:20+00:00",
|
304 |
+
"type": "library",
|
305 |
+
"extra": {
|
306 |
+
"branch-alias": {
|
307 |
+
"dev-master": "1.18-dev"
|
308 |
+
},
|
309 |
+
"thanks": {
|
310 |
+
"name": "symfony/polyfill",
|
311 |
+
"url": "https://github.com/symfony/polyfill"
|
312 |
+
}
|
313 |
+
},
|
314 |
+
"installation-source": "source",
|
315 |
+
"autoload": {
|
316 |
+
"psr-4": {
|
317 |
+
"Symfony\\Polyfill\\Ctype\\": ""
|
318 |
+
},
|
319 |
"files": [
|
320 |
+
"bootstrap.php"
|
|
|
|
|
321 |
]
|
322 |
+
},
|
323 |
+
"notification-url": "https://packagist.org/downloads/",
|
324 |
+
"license": [
|
325 |
+
"MIT"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
326 |
],
|
327 |
+
"authors": [
|
328 |
+
{
|
329 |
+
"name": "Gert de Pagter",
|
330 |
+
"email": "BackEndTea@gmail.com"
|
331 |
+
},
|
332 |
+
{
|
333 |
+
"name": "Symfony Community",
|
334 |
+
"homepage": "https://symfony.com/contributors"
|
335 |
+
}
|
336 |
+
],
|
337 |
+
"description": "Symfony polyfill for ctype functions",
|
338 |
+
"homepage": "https://symfony.com",
|
339 |
+
"keywords": [
|
340 |
+
"compatibility",
|
341 |
+
"ctype",
|
342 |
+
"polyfill",
|
343 |
+
"portable"
|
344 |
+
],
|
345 |
+
"install-path": "../symfony/polyfill-ctype"
|
346 |
+
},
|
347 |
+
{
|
348 |
+
"name": "twig/twig",
|
349 |
+
"version": "v1.42.5",
|
350 |
+
"version_normalized": "1.42.5.0",
|
351 |
+
"source": {
|
352 |
+
"type": "git",
|
353 |
+
"url": "https://github.com/twigphp/Twig.git",
|
354 |
+
"reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e"
|
355 |
+
},
|
356 |
+
"dist": {
|
357 |
+
"type": "zip",
|
358 |
+
"url": "https://api.github.com/repos/twigphp/Twig/zipball/87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
|
359 |
+
"reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
|
360 |
+
"shasum": ""
|
361 |
+
},
|
362 |
+
"require": {
|
363 |
+
"php": ">=5.5.0",
|
364 |
+
"symfony/polyfill-ctype": "^1.8"
|
365 |
+
},
|
366 |
+
"require-dev": {
|
367 |
+
"psr/container": "^1.0",
|
368 |
+
"symfony/phpunit-bridge": "^4.4|^5.0"
|
369 |
+
},
|
370 |
+
"time": "2020-02-11T05:59:23+00:00",
|
371 |
+
"type": "library",
|
372 |
+
"extra": {
|
373 |
+
"branch-alias": {
|
374 |
+
"dev-master": "1.42-dev"
|
375 |
+
}
|
376 |
+
},
|
377 |
+
"installation-source": "dist",
|
378 |
+
"autoload": {
|
379 |
+
"psr-0": {
|
380 |
+
"Twig_": "lib/"
|
381 |
+
},
|
382 |
+
"psr-4": {
|
383 |
+
"Twig\\": "src/"
|
384 |
+
}
|
385 |
+
},
|
386 |
+
"notification-url": "https://packagist.org/downloads/",
|
387 |
+
"license": [
|
388 |
+
"BSD-3-Clause"
|
389 |
+
],
|
390 |
+
"authors": [
|
391 |
+
{
|
392 |
+
"name": "Fabien Potencier",
|
393 |
+
"email": "fabien@symfony.com",
|
394 |
+
"homepage": "http://fabien.potencier.org",
|
395 |
+
"role": "Lead Developer"
|
396 |
+
},
|
397 |
+
{
|
398 |
+
"name": "Twig Team",
|
399 |
+
"role": "Contributors"
|
400 |
+
},
|
401 |
+
{
|
402 |
+
"name": "Armin Ronacher",
|
403 |
+
"email": "armin.ronacher@active-4.com",
|
404 |
+
"role": "Project Founder"
|
405 |
+
}
|
406 |
+
],
|
407 |
+
"description": "Twig, the flexible, fast, and secure template language for PHP",
|
408 |
+
"homepage": "https://twig.symfony.com",
|
409 |
+
"keywords": [
|
410 |
+
"templating"
|
411 |
+
],
|
412 |
+
"install-path": "../twig/twig"
|
413 |
+
}
|
414 |
+
],
|
415 |
+
"dev": false,
|
416 |
+
"dev-package-names": []
|
417 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
vendor/composer/installed.php
ADDED
@@ -0,0 +1,88 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php return array (
|
2 |
+
'root' =>
|
3 |
+
array (
|
4 |
+
'pretty_version' => 'dev-master',
|
5 |
+
'version' => 'dev-master',
|
6 |
+
'aliases' =>
|
7 |
+
array (
|
8 |
+
),
|
9 |
+
'reference' => 'd7d4f7eebb5bede553405d2ef602066466a08f7d',
|
10 |
+
'name' => 'brizy/brizy',
|
11 |
+
),
|
12 |
+
'versions' =>
|
13 |
+
array (
|
14 |
+
'bagrinsergiu/brizy-migration-utils' =>
|
15 |
+
array (
|
16 |
+
'pretty_version' => '1.4.2',
|
17 |
+
'version' => '1.4.2.0',
|
18 |
+
'aliases' =>
|
19 |
+
array (
|
20 |
+
),
|
21 |
+
'reference' => '6af1f8e3e181d1d262bd32cb96bf08ef9ead59df',
|
22 |
+
),
|
23 |
+
'brizy/brizy' =>
|
24 |
+
array (
|
25 |
+
'pretty_version' => 'dev-master',
|
26 |
+
'version' => 'dev-master',
|
27 |
+
'aliases' =>
|
28 |
+
array (
|
29 |
+
),
|
30 |
+
'reference' => 'd7d4f7eebb5bede553405d2ef602066466a08f7d',
|
31 |
+
),
|
32 |
+
'enshrined/svg-sanitize' =>
|
33 |
+
array (
|
34 |
+
'pretty_version' => '0.13.3',
|
35 |
+
'version' => '0.13.3.0',
|
36 |
+
'aliases' =>
|
37 |
+
array (
|
38 |
+
),
|
39 |
+
'reference' => 'bc66593f255b7d2613d8f22041180036979b6403',
|
40 |
+
),
|
41 |
+
'knplabs/gaufrette' =>
|
42 |
+
array (
|
43 |
+
'pretty_version' => 'v0.7.0',
|
44 |
+
'version' => '0.7.0.0',
|
45 |
+
'aliases' =>
|
46 |
+
array (
|
47 |
+
),
|
48 |
+
'reference' => 'a0627e91e8753f442eea6560cb347151cd306b2c',
|
49 |
+
),
|
50 |
+
'select2/select2' =>
|
51 |
+
array (
|
52 |
+
'pretty_version' => '4.1.0-beta.1',
|
53 |
+
'version' => '4.1.0.0-beta1',
|
54 |
+
'aliases' =>
|
55 |
+
array (
|
56 |
+
),
|
57 |
+
'reference' => '1c0c2a94d1b70a185baff5b13c654411e2c01339',
|
58 |
+
),
|
59 |
+
'shortpixel/shortpixel-php' =>
|
60 |
+
array (
|
61 |
+
'pretty_version' => 'dev-master',
|
62 |
+
'version' => 'dev-master',
|
63 |
+
'aliases' =>
|
64 |
+
array (
|
65 |
+
),
|
66 |
+
'reference' => '8ddbdda375dc82c1f6623d3e9acc8ac7177fc6c4',
|
67 |
+
),
|
68 |
+
'symfony/polyfill-ctype' =>
|
69 |
+
array (
|
70 |
+
'pretty_version' => 'dev-master',
|
71 |
+
'version' => 'dev-master',
|
72 |
+
'aliases' =>
|
73 |
+
array (
|
74 |
+
0 => '1.18.x-dev',
|
75 |
+
),
|
76 |
+
'reference' => '1c302646f6efc070cd46856e600e5e0684d6b454',
|
77 |
+
),
|
78 |
+
'twig/twig' =>
|
79 |
+
array (
|
80 |
+
'pretty_version' => 'v1.42.5',
|
81 |
+
'version' => '1.42.5.0',
|
82 |
+
'aliases' =>
|
83 |
+
array (
|
84 |
+
),
|
85 |
+
'reference' => '87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e',
|
86 |
+
),
|
87 |
+
),
|
88 |
+
);
|
vendor/composer/platform_check.php
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
// platform_check.php @generated by Composer
|
4 |
+
|
5 |
+
$issues = array();
|
6 |
+
|
7 |
+
if (!(PHP_VERSION_ID >= 50600)) {
|
8 |
+
$issues[] = 'Your Composer dependencies require a PHP version ">= 5.6.0". You are running ' . PHP_VERSION . '.';
|
9 |
+
}
|
10 |
+
|
11 |
+
if ($issues) {
|
12 |
+
if (!headers_sent()) {
|
13 |
+
header('HTTP/1.1 500 Internal Server Error');
|
14 |
+
}
|
15 |
+
if (!ini_get('display_errors')) {
|
16 |
+
if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
|
17 |
+
fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL);
|
18 |
+
} elseif (!headers_sent()) {
|
19 |
+
echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL;
|
20 |
+
}
|
21 |
+
}
|
22 |
+
trigger_error(
|
23 |
+
'Composer detected issues in your platform: ' . implode(' ', $issues),
|
24 |
+
E_USER_ERROR
|
25 |
+
);
|
26 |
+
}
|