PluginProbe ʕ •ᴥ•ʔ
Blocks Animation: CSS Animations for Gutenberg Blocks / 3.2.0
Blocks Animation: CSS Animations for Gutenberg Blocks v3.2.0
3.2.0 3.1.11 3.1.10 2.2.5 2.2.6 2.2.7 2.3.0 2.3.1 2.3.2 2.3.3 2.3.4 2.4.0 2.4.1 2.5.0 2.5.1 2.5.2 2.6.0 2.6.1 2.6.10 2.6.11 2.6.12 2.6.13 2.6.2 2.6.3 2.6.4 2.6.5 2.6.6 2.6.7 2.6.8 2.6.9 3.0.0 3.0.1 3.0.10 3.0.11 3.0.12 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.1.8 3.1.9 trunk 1.0.0 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.1.0 1.7.1 1.7.2 1.7.3 1.7.4 1.7.5 2.0.0 2.0.1 2.0.10 2.0.11 2.0.12 2.0.13 2.0.14 2.0.15 2.0.16 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4
blocks-animation / vendor / composer / autoload_real.php
blocks-animation / vendor / composer Last commit date
ClassLoader.php 1 year ago InstalledVersions.php 1 year ago LICENSE 1 year ago autoload_classmap.php 1 year ago autoload_files.php 1 year ago autoload_namespaces.php 1 year ago autoload_psr4.php 1 year ago autoload_real.php 8 months ago autoload_static.php 8 months ago installed.json 6 days ago installed.php 6 days ago
autoload_real.php
49 lines
1 <?php
2
3 // autoload_real.php @generated by Composer
4
5 class ComposerAutoloaderInit9e8340b6de97253d4438363ac0655abe
6 {
7 private static $loader;
8
9 public static function loadClassLoader($class)
10 {
11 if ('Composer\Autoload\ClassLoader' === $class) {
12 require __DIR__ . '/ClassLoader.php';
13 }
14 }
15
16 /**
17 * @return \Composer\Autoload\ClassLoader
18 */
19 public static function getLoader()
20 {
21 if (null !== self::$loader) {
22 return self::$loader;
23 }
24
25 spl_autoload_register(array('ComposerAutoloaderInit9e8340b6de97253d4438363ac0655abe', 'loadClassLoader'), true, true);
26 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
27 spl_autoload_unregister(array('ComposerAutoloaderInit9e8340b6de97253d4438363ac0655abe', 'loadClassLoader'));
28
29 require __DIR__ . '/autoload_static.php';
30 call_user_func(\Composer\Autoload\ComposerStaticInit9e8340b6de97253d4438363ac0655abe::getInitializer($loader));
31
32 $loader->register(true);
33
34 $filesToLoad = \Composer\Autoload\ComposerStaticInit9e8340b6de97253d4438363ac0655abe::$files;
35 $requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
36 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
37 $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
38
39 require $file;
40 }
41 }, null, null);
42 foreach ($filesToLoad as $fileIdentifier => $file) {
43 $requireFile($fileIdentifier, $file);
44 }
45
46 return $loader;
47 }
48 }
49