Changeset 2250246
- Timestamp:
- 02/25/2020 11:24:01 PM (6 years ago)
- Location:
- scss-library/trunk
- Files:
-
- 7 edited
-
scss-library.php (modified) (1 diff)
-
vendor/autoload.php (modified) (1 diff)
-
vendor/composer/autoload_classmap.php (modified) (1 diff)
-
vendor/composer/autoload_psr4.php (modified) (1 diff)
-
vendor/composer/autoload_real.php (modified) (3 diffs)
-
vendor/composer/autoload_static.php (modified) (4 diffs)
-
vendor/composer/installed.json (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
scss-library/trunk/scss-library.php
r2250240 r2250246 4 4 Description: Adds support for SCSS stylesheets to wp_enqueue_style. 5 5 Author: Juan Sebastián Echeverry 6 Version: 0.1. 76 Version: 0.1.8 7 7 Text Domain: scsslib 8 8 -
scss-library/trunk/vendor/autoload.php
r2250232 r2250246 5 5 require_once __DIR__ . '/composer/autoload_real.php'; 6 6 7 return ComposerAutoloaderInit 9311292ff8b260a379578717d163d1f8::getLoader();7 return ComposerAutoloaderInitff69a621beb925ab247ba89a2b55463b::getLoader(); -
scss-library/trunk/vendor/composer/autoload_classmap.php
r2148103 r2250246 7 7 8 8 return array( 9 'Baxtian\\Singleton' => $vendorDir . '/baxtian/php-singleton/src/Singleton.php', 10 'ScssLibrary\\ScssLibrary' => $baseDir . '/src/ScssLibrary.php', 11 'ScssLibrary\\Settings\\ScssLibrary' => $baseDir . '/src/Settings/ScssLibrary.php', 12 'ScssPhp\\ScssPhp\\Base\\Range' => $vendorDir . '/scssphp/scssphp/src/Base/Range.php', 13 'ScssPhp\\ScssPhp\\Block' => $vendorDir . '/scssphp/scssphp/src/Block.php', 14 'ScssPhp\\ScssPhp\\Cache' => $vendorDir . '/scssphp/scssphp/src/Cache.php', 15 'ScssPhp\\ScssPhp\\Colors' => $vendorDir . '/scssphp/scssphp/src/Colors.php', 16 'ScssPhp\\ScssPhp\\Compiler' => $vendorDir . '/scssphp/scssphp/src/Compiler.php', 17 'ScssPhp\\ScssPhp\\Compiler\\Environment' => $vendorDir . '/scssphp/scssphp/src/Compiler/Environment.php', 18 'ScssPhp\\ScssPhp\\Exception\\CompilerException' => $vendorDir . '/scssphp/scssphp/src/Exception/CompilerException.php', 19 'ScssPhp\\ScssPhp\\Exception\\ParserException' => $vendorDir . '/scssphp/scssphp/src/Exception/ParserException.php', 20 'ScssPhp\\ScssPhp\\Exception\\RangeException' => $vendorDir . '/scssphp/scssphp/src/Exception/RangeException.php', 21 'ScssPhp\\ScssPhp\\Exception\\ServerException' => $vendorDir . '/scssphp/scssphp/src/Exception/ServerException.php', 22 'ScssPhp\\ScssPhp\\Formatter' => $vendorDir . '/scssphp/scssphp/src/Formatter.php', 23 'ScssPhp\\ScssPhp\\Formatter\\Compact' => $vendorDir . '/scssphp/scssphp/src/Formatter/Compact.php', 24 'ScssPhp\\ScssPhp\\Formatter\\Compressed' => $vendorDir . '/scssphp/scssphp/src/Formatter/Compressed.php', 25 'ScssPhp\\ScssPhp\\Formatter\\Crunched' => $vendorDir . '/scssphp/scssphp/src/Formatter/Crunched.php', 26 'ScssPhp\\ScssPhp\\Formatter\\Debug' => $vendorDir . '/scssphp/scssphp/src/Formatter/Debug.php', 27 'ScssPhp\\ScssPhp\\Formatter\\Expanded' => $vendorDir . '/scssphp/scssphp/src/Formatter/Expanded.php', 28 'ScssPhp\\ScssPhp\\Formatter\\Nested' => $vendorDir . '/scssphp/scssphp/src/Formatter/Nested.php', 29 'ScssPhp\\ScssPhp\\Formatter\\OutputBlock' => $vendorDir . '/scssphp/scssphp/src/Formatter/OutputBlock.php', 30 'ScssPhp\\ScssPhp\\Node' => $vendorDir . '/scssphp/scssphp/src/Node.php', 31 'ScssPhp\\ScssPhp\\Node\\Number' => $vendorDir . '/scssphp/scssphp/src/Node/Number.php', 32 'ScssPhp\\ScssPhp\\Parser' => $vendorDir . '/scssphp/scssphp/src/Parser.php', 33 'ScssPhp\\ScssPhp\\SourceMap\\Base64' => $vendorDir . '/scssphp/scssphp/src/SourceMap/Base64.php', 34 'ScssPhp\\ScssPhp\\SourceMap\\Base64VLQ' => $vendorDir . '/scssphp/scssphp/src/SourceMap/Base64VLQ.php', 35 'ScssPhp\\ScssPhp\\SourceMap\\Base64VLQEncoder' => $vendorDir . '/scssphp/scssphp/src/SourceMap/Base64VLQEncoder.php', 36 'ScssPhp\\ScssPhp\\SourceMap\\SourceMapGenerator' => $vendorDir . '/scssphp/scssphp/src/SourceMap/SourceMapGenerator.php', 37 'ScssPhp\\ScssPhp\\Type' => $vendorDir . '/scssphp/scssphp/src/Type.php', 38 'ScssPhp\\ScssPhp\\Util' => $vendorDir . '/scssphp/scssphp/src/Util.php', 39 'ScssPhp\\ScssPhp\\Version' => $vendorDir . '/scssphp/scssphp/src/Version.php', 9 40 ); -
scss-library/trunk/vendor/composer/autoload_psr4.php
r2162499 r2250246 9 9 'ScssPhp\\ScssPhp\\' => array($vendorDir . '/scssphp/scssphp/src'), 10 10 'ScssLibrary\\' => array($baseDir . '/src'), 11 'Baxtian\\' => array($vendorDir . '/baxtian/php-singleton/src'), 11 12 ); -
scss-library/trunk/vendor/composer/autoload_real.php
r2162499 r2250246 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 308c89af10a712ff5637e8e1d055ad175 class ComposerAutoloaderInitff69a621beb925ab247ba89a2b55463b 6 6 { 7 7 private static $loader; … … 20 20 } 21 21 22 spl_autoload_register(array('ComposerAutoloaderInit 308c89af10a712ff5637e8e1d055ad17', 'loadClassLoader'), true, true);22 spl_autoload_register(array('ComposerAutoloaderInitff69a621beb925ab247ba89a2b55463b', 'loadClassLoader'), true, true); 23 23 self::$loader = $loader = new \Composer\Autoload\ClassLoader(); 24 spl_autoload_unregister(array('ComposerAutoloaderInit 308c89af10a712ff5637e8e1d055ad17', 'loadClassLoader'));24 spl_autoload_unregister(array('ComposerAutoloaderInitff69a621beb925ab247ba89a2b55463b', 'loadClassLoader')); 25 25 26 26 $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); … … 28 28 require_once __DIR__ . '/autoload_static.php'; 29 29 30 call_user_func(\Composer\Autoload\ComposerStaticInit 308c89af10a712ff5637e8e1d055ad17::getInitializer($loader));30 call_user_func(\Composer\Autoload\ComposerStaticInitff69a621beb925ab247ba89a2b55463b::getInitializer($loader)); 31 31 } else { 32 32 $map = require __DIR__ . '/autoload_namespaces.php'; -
scss-library/trunk/vendor/composer/autoload_static.php
r2162499 r2250246 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 308c89af10a712ff5637e8e1d055ad177 class ComposerStaticInitff69a621beb925ab247ba89a2b55463b 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( … … 12 12 'ScssPhp\\ScssPhp\\' => 16, 13 13 'ScssLibrary\\' => 12, 14 ), 15 'B' => 16 array ( 17 'Baxtian\\' => 8, 14 18 ), 15 19 ); … … 24 28 0 => __DIR__ . '/../..' . '/src', 25 29 ), 30 'Baxtian\\' => 31 array ( 32 0 => __DIR__ . '/..' . '/baxtian/php-singleton/src', 33 ), 34 ); 35 36 public static $classMap = array ( 37 'Baxtian\\Singleton' => __DIR__ . '/..' . '/baxtian/php-singleton/src/Singleton.php', 38 'ScssLibrary\\ScssLibrary' => __DIR__ . '/../..' . '/src/ScssLibrary.php', 39 'ScssLibrary\\Settings\\ScssLibrary' => __DIR__ . '/../..' . '/src/Settings/ScssLibrary.php', 40 'ScssPhp\\ScssPhp\\Base\\Range' => __DIR__ . '/..' . '/scssphp/scssphp/src/Base/Range.php', 41 'ScssPhp\\ScssPhp\\Block' => __DIR__ . '/..' . '/scssphp/scssphp/src/Block.php', 42 'ScssPhp\\ScssPhp\\Cache' => __DIR__ . '/..' . '/scssphp/scssphp/src/Cache.php', 43 'ScssPhp\\ScssPhp\\Colors' => __DIR__ . '/..' . '/scssphp/scssphp/src/Colors.php', 44 'ScssPhp\\ScssPhp\\Compiler' => __DIR__ . '/..' . '/scssphp/scssphp/src/Compiler.php', 45 'ScssPhp\\ScssPhp\\Compiler\\Environment' => __DIR__ . '/..' . '/scssphp/scssphp/src/Compiler/Environment.php', 46 'ScssPhp\\ScssPhp\\Exception\\CompilerException' => __DIR__ . '/..' . '/scssphp/scssphp/src/Exception/CompilerException.php', 47 'ScssPhp\\ScssPhp\\Exception\\ParserException' => __DIR__ . '/..' . '/scssphp/scssphp/src/Exception/ParserException.php', 48 'ScssPhp\\ScssPhp\\Exception\\RangeException' => __DIR__ . '/..' . '/scssphp/scssphp/src/Exception/RangeException.php', 49 'ScssPhp\\ScssPhp\\Exception\\ServerException' => __DIR__ . '/..' . '/scssphp/scssphp/src/Exception/ServerException.php', 50 'ScssPhp\\ScssPhp\\Formatter' => __DIR__ . '/..' . '/scssphp/scssphp/src/Formatter.php', 51 'ScssPhp\\ScssPhp\\Formatter\\Compact' => __DIR__ . '/..' . '/scssphp/scssphp/src/Formatter/Compact.php', 52 'ScssPhp\\ScssPhp\\Formatter\\Compressed' => __DIR__ . '/..' . '/scssphp/scssphp/src/Formatter/Compressed.php', 53 'ScssPhp\\ScssPhp\\Formatter\\Crunched' => __DIR__ . '/..' . '/scssphp/scssphp/src/Formatter/Crunched.php', 54 'ScssPhp\\ScssPhp\\Formatter\\Debug' => __DIR__ . '/..' . '/scssphp/scssphp/src/Formatter/Debug.php', 55 'ScssPhp\\ScssPhp\\Formatter\\Expanded' => __DIR__ . '/..' . '/scssphp/scssphp/src/Formatter/Expanded.php', 56 'ScssPhp\\ScssPhp\\Formatter\\Nested' => __DIR__ . '/..' . '/scssphp/scssphp/src/Formatter/Nested.php', 57 'ScssPhp\\ScssPhp\\Formatter\\OutputBlock' => __DIR__ . '/..' . '/scssphp/scssphp/src/Formatter/OutputBlock.php', 58 'ScssPhp\\ScssPhp\\Node' => __DIR__ . '/..' . '/scssphp/scssphp/src/Node.php', 59 'ScssPhp\\ScssPhp\\Node\\Number' => __DIR__ . '/..' . '/scssphp/scssphp/src/Node/Number.php', 60 'ScssPhp\\ScssPhp\\Parser' => __DIR__ . '/..' . '/scssphp/scssphp/src/Parser.php', 61 'ScssPhp\\ScssPhp\\SourceMap\\Base64' => __DIR__ . '/..' . '/scssphp/scssphp/src/SourceMap/Base64.php', 62 'ScssPhp\\ScssPhp\\SourceMap\\Base64VLQ' => __DIR__ . '/..' . '/scssphp/scssphp/src/SourceMap/Base64VLQ.php', 63 'ScssPhp\\ScssPhp\\SourceMap\\Base64VLQEncoder' => __DIR__ . '/..' . '/scssphp/scssphp/src/SourceMap/Base64VLQEncoder.php', 64 'ScssPhp\\ScssPhp\\SourceMap\\SourceMapGenerator' => __DIR__ . '/..' . '/scssphp/scssphp/src/SourceMap/SourceMapGenerator.php', 65 'ScssPhp\\ScssPhp\\Type' => __DIR__ . '/..' . '/scssphp/scssphp/src/Type.php', 66 'ScssPhp\\ScssPhp\\Util' => __DIR__ . '/..' . '/scssphp/scssphp/src/Util.php', 67 'ScssPhp\\ScssPhp\\Version' => __DIR__ . '/..' . '/scssphp/scssphp/src/Version.php', 26 68 ); 27 69 … … 29 71 { 30 72 return \Closure::bind(function () use ($loader) { 31 $loader->prefixLengthsPsr4 = ComposerStaticInit308c89af10a712ff5637e8e1d055ad17::$prefixLengthsPsr4; 32 $loader->prefixDirsPsr4 = ComposerStaticInit308c89af10a712ff5637e8e1d055ad17::$prefixDirsPsr4; 73 $loader->prefixLengthsPsr4 = ComposerStaticInitff69a621beb925ab247ba89a2b55463b::$prefixLengthsPsr4; 74 $loader->prefixDirsPsr4 = ComposerStaticInitff69a621beb925ab247ba89a2b55463b::$prefixDirsPsr4; 75 $loader->classMap = ComposerStaticInitff69a621beb925ab247ba89a2b55463b::$classMap; 33 76 34 77 }, null, ClassLoader::class); -
scss-library/trunk/vendor/composer/installed.json
r2148103 r2250246 1 1 [ 2 { 3 "name": "baxtian/php-singleton", 4 "version": "0.0.1", 5 "version_normalized": "0.0.1.0", 6 "source": { 7 "type": "git", 8 "url": "https://bitbucket.org/baxtian/php-singleton.git", 9 "reference": "bdbab05ec7e21c2e6bfc2310bc60e992e4ff88c7" 10 }, 11 "dist": { 12 "type": "zip", 13 "url": "https://bitbucket.org/baxtian/php-singleton/get/bdbab05ec7e21c2e6bfc2310bc60e992e4ff88c7.zip", 14 "reference": "bdbab05ec7e21c2e6bfc2310bc60e992e4ff88c7", 15 "shasum": "" 16 }, 17 "require": { 18 "php": "^7.0" 19 }, 20 "time": "2020-02-21T21:55:11+00:00", 21 "type": "library", 22 "installation-source": "dist", 23 "autoload": { 24 "psr-4": { 25 "Baxtian\\": "src/" 26 } 27 }, 28 "notification-url": "https://packagist.org/downloads/", 29 "license": [ 30 "GPL-3.0-or-later" 31 ], 32 "description": "PHP Trait Singleton", 33 "homepage": "https://bitbucket.org/baxtian/php-singleton" 34 }, 2 35 { 3 36 "name": "scssphp/scssphp",
Note: See TracChangeset
for help on using the changeset viewer.