Changeset 2120144
- Timestamp:
- 07/09/2019 02:08:56 PM (7 years ago)
- Location:
- vaultpress/trunk
- Files:
-
- 15 edited
-
class-vaultpress.php (modified) (4 diffs)
-
composer.json (modified) (1 diff)
-
nav-styles.css (modified) (1 diff)
-
styles.css (modified) (6 diffs)
-
vaultpress.php (modified) (2 diffs)
-
vendor/autoload.php (modified) (1 diff)
-
vendor/autoload_packages.php (modified) (3 diffs)
-
vendor/automattic/jetpack-autoloader/composer.json (modified) (2 diffs)
-
vendor/automattic/jetpack-autoloader/src/AutoloadGenerator.php (modified) (7 diffs)
-
vendor/automattic/jetpack-autoloader/src/autoload.php (modified) (2 diffs)
-
vendor/composer/ClassLoader.php (modified) (1 diff)
-
vendor/composer/autoload_classmap_package.php (modified) (2 diffs)
-
vendor/composer/autoload_real.php (modified) (3 diffs)
-
vendor/composer/autoload_static.php (modified) (2 diffs)
-
vendor/composer/installed.json (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vaultpress/trunk/class-vaultpress.php
r2105838 r2120144 2 2 /** 3 3 * Main VaultPress class. 4 * 4 * 5 5 * @package VaultPress 6 6 */ … … 573 573 <h2><?php _e( 'The VaultPress plugin requires a subscription.', 'vaultpress' ); ?></h2> 574 574 <p><?php _e( 'Get realtime backups, automated security scanning, and support from WordPress experts.', 'vaultpress' ); ?></p> 575 <a class="dops-button is-primary" href="https://vaultpress.com/plugin/?utm_source=plugin-unregistered&utm_medium=view-plans-and-pricing&utm_campaign=1.0-plugin" ><?php _e( 'View plans and pricing', 'vaultpress' ); ?></a>575 <a class="dops-button is-primary" href="https://vaultpress.com/plugin/?utm_source=plugin-unregistered&utm_medium=view-plans-and-pricing&utm_campaign=1.0-plugin" target="_blank" rel="noopener noreferrer"><?php _e( 'View plans and pricing', 'vaultpress' ); ?></a> 576 576 </div> 577 577 </div> … … 591 591 </div> 592 592 <div class="dops-card"> 593 <p><?php _e( 'Paste your registration key below:', 'vaultpress' ); ?></p>594 593 <form method="post" action=""> 595 594 <fieldset> 596 <textarea class="dops-textarea" placeholder="<?php echo esc_attr( __( 'Enter your key here...', 'vaultpress' ) ); ?>" name="registration_key"></textarea> 597 <button class="dops-button"><?php _e( 'Register ', 'vaultpress' ); ?></button> 595 <p> 596 <?php esc_html_e( 'Paste your registration key below:', 'vaultpress' ); ?> 597 </p> 598 <p> 599 <textarea class="dops-textarea" placeholder="<?php esc_attr_e( __( 'Enter your key here...', 'vaultpress' ) ); ?>" name="registration_key"></textarea> 600 </p> 601 <button class="dops-button is-compact"><?php _e( 'Register ', 'vaultpress' ); ?></button> 598 602 <input type="hidden" name="action" value="register" /> 599 603 <?php wp_nonce_field( 'vaultpress_register' ); ?> … … 786 790 method="post" 787 791 action=""> 788 <button class="dops-button is-scary "><?php _e( 'Delete all VaultPresssettings', 'vaultpress' ); ?></button>792 <button class="dops-button is-scary is-compact"><?php esc_html_e( 'Delete all settings', 'vaultpress' ); ?></button> 789 793 <input type="hidden" name="action" value="delete-vp-settings"/> 790 794 <?php wp_nonce_field( 'delete_vp_settings' ); ?> -
vaultpress/trunk/composer.json
r2105838 r2120144 13 13 "require-dev": { 14 14 "automattic/jetpack-standards": "master-dev", 15 "automattic/jetpack-autoloader": "1. 0.0"15 "automattic/jetpack-autoloader": "1.2.0" 16 16 }, 17 17 "scripts": { -
vaultpress/trunk/nav-styles.css
r2105838 r2120144 1 /* Generated by Font Squirrel (http://www.fontsquirrel.com) on December 16, 2013 */ 2 @font-face { 3 font-family: 'vaultpressregular'; 4 src: url('fonts/vaultpress-regular.eot'); 5 src: url('fonts/vaultpress-regular.eot?#iefix') format('embedded-opentype'), 6 url('fonts/vaultpress-regular.woff') format('woff'), 7 url('fonts/vaultpress-regular.ttf') format('truetype'), 8 url('fonts/vaultpress-regular.svg#vaultpressregular') format('svg'); 9 font-weight: normal; 10 font-style: normal; 11 } 12 #toplevel_page_vaultpress div.wp-menu-image:before { 13 content: '\f219'; 14 font-size: 18px !important; 15 font-family: 'vaultpressregular' !important; 16 } 17 1 18 /** 2 19 * Notices -
vaultpress/trunk/styles.css
r2105838 r2120144 557 557 } 558 558 559 # no-access-credentials p {559 #vp-wrap #no-access-credentials p { 560 560 margin: 20px 0; 561 561 color: #333; … … 564 564 text-align: left; 565 565 line-height: 1.4; 566 background: none; 566 567 } 567 568 … … 799 800 ========================================================================== */ 800 801 801 #vp_progress {802 padding-right: 20px;803 }804 805 802 #vp_progress:after { 806 803 /* clearfix */ … … 855 852 } 856 853 857 858 854 .vp_graphs ul { 859 855 padding: 0 0 5px 0; … … 880 876 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#299a0b', endColorstr='#299a0b',GradientType=0 ); 881 877 background: linear-gradient(top, rgba(41,154,11,1) 0%,rgba(41,154,11,1) 100%); 878 } 879 880 #vp-wrap #vp_progress .vp_graphs ul li { 881 width: 100%; 882 882 } 883 883 … … 910 910 } 911 911 } 912 913 912 914 913 #vp_progress .bar span { -
vaultpress/trunk/vaultpress.php
r2105838 r2120144 4 4 * Plugin URI: http://vaultpress.com/?utm_source=plugin-uri&utm_medium=plugin-description&utm_campaign=1.0 5 5 * Description: Protect your content, themes, plugins, and settings with <strong>realtime backup</strong> and <strong>automated security scanning</strong> from <a href="http://vaultpress.com/?utm_source=wp-admin&utm_medium=plugin-description&utm_campaign=1.0" rel="nofollow">VaultPress</a>. Activate, enter your registration key, and never worry again. <a href="http://vaultpress.com/help/?utm_source=wp-admin&utm_medium=plugin-description&utm_campaign=1.0" rel="nofollow">Need some help?</a> 6 * Version: 2.0-beta 6 * Version: 2.0-beta-2 7 7 * Author: Automattic 8 8 * Author URI: http://vaultpress.com/?utm_source=author-uri&utm_medium=plugin-description&utm_campaign=1.0 … … 18 18 19 19 define( 'VAULTPRESS__MINIMUM_PHP_VERSION', '5.3.2' ); 20 define( 'VAULTPRESS__VERSION', '2.0-beta ' );20 define( 'VAULTPRESS__VERSION', '2.0-beta-2' ); 21 21 define( 'VAULTPRESS__PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); 22 22 -
vaultpress/trunk/vendor/autoload.php
r2105838 r2120144 5 5 require_once __DIR__ . '/composer/autoload_real.php'; 6 6 7 return ComposerAutoloaderInit 76a95635ff5cbd7e495a8140e57027cc::getLoader();7 return ComposerAutoloaderInit0aa68f31982b323d4ac5bad295d680bc::getLoader(); -
vaultpress/trunk/vendor/autoload_packages.php
r2105838 r2120144 74 74 if ( isset( $jetpack_packages_classes[ $class_name ] ) ) { 75 75 if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) { 76 // TODO ideally we shouldn't skip any of these, see: https://github.com/Automattic/jetpack/pull/12646 76 // TODO ideally we shouldn't skip any of these, see: https://github.com/Automattic/jetpack/pull/12646. 77 77 $ignore = in_array( 78 78 $class_name, … … 81 81 'Automattic\Jetpack\Connection\Manager', 82 82 'Automattic\Jetpack\Connection\Manager_Interface', 83 'Automattic\Jetpack\Connection\XMLRPC_Connector', 83 84 'Jetpack_Options', 84 'Jetpack_Sync_Main', 85 'Jetpack_Signature', 86 'Automattic\Jetpack\Sync\Main', 85 87 'Automattic\Jetpack\Constants', 88 'Automattic\Jetpack\Tracking', 89 'Automattic\Jetpack\Plugin\Tracking', 86 90 ), 87 91 true … … 117 121 * Prepare all the classes for autoloading. 118 122 */ 119 function enqueue_packages_ d4752799fc8f93796cd03e54f089c1d3() {123 function enqueue_packages_5839d95eac7dcb16939cc92ebcc4d8cf() { 120 124 $class_map = require_once dirname( __FILE__ ) . '/composer/autoload_classmap_package.php'; 121 125 foreach ( $class_map as $class_name => $class_info ) { 122 126 enqueue_package_class( $class_name, $class_info['version'], $class_info['path'] ); 123 127 } 124 $legacy_class_map = require_once dirname( __FILE__ ) . '/composer/autoload_classmap.php';125 foreach ( $legacy_class_map as $class_name => $class_path ) {126 enqueue_package_class( $class_name, '0.1', $class_path );127 }128 128 } 129 enqueue_packages_d4752799fc8f93796cd03e54f089c1d3(); 130 129 enqueue_packages_5839d95eac7dcb16939cc92ebcc4d8cf(); -
vaultpress/trunk/vendor/automattic/jetpack-autoloader/composer.json
r2105838 r2120144 6 6 "require": { 7 7 "composer-plugin-api": "^1.1" 8 }, 9 "require-dev": { 10 "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5" 8 11 }, 9 12 "autoload": { … … 15 18 "class": "Automattic\\Jetpack\\Autoloader\\CustomAutoloaderPlugin" 16 19 }, 20 "scripts": { 21 "phpunit": [ 22 "@composer install", 23 "./vendor/phpunit/phpunit/phpunit --colors=always" 24 ] 25 }, 17 26 "minimum-stability": "dev", 18 27 "prefer-stable": true -
vaultpress/trunk/vendor/automattic/jetpack-autoloader/src/AutoloadGenerator.php
r2105838 r2120144 96 96 * It also return the path and the version of a package. 97 97 * 98 * Currently supports only psr-4 and clasmap parsing. 99 * 98 100 * @param array $packageMap Map of all the packages. 99 101 * @param string $type Type of autoloader to use, currently not used, since we only support psr-4. … … 104 106 protected function parseAutoloadsType( array $packageMap, $type, PackageInterface $mainPackage ) { 105 107 $autoloads = array(); 108 109 if ( 'psr-4' !== $type && 'classmap' !== $type ) { 110 return parent::parseAutoloadsType( $packageMap, $type, $mainPackage ); 111 } 112 106 113 foreach ( $packageMap as $item ) { 107 114 list($package, $installPath) = $item; … … 112 119 } 113 120 114 // Skip packages that are not 'psr-4' since we only support them for now.115 if ( ! isset( $autoload['psr-4'] ) || ! is_array( $autoload['psr-4'] ) ) {116 continue;117 }118 119 121 if ( null !== $package->getTargetDir() && $package !== $mainPackage ) { 120 122 $installPath = substr( $installPath, 0, -strlen( '/' . $package->getTargetDir() ) ); 121 123 } 122 foreach ( $autoload['psr-4'] as $namespace => $paths ) { 123 foreach ( (array) $paths as $path ) { 124 $relativePath = empty( $installPath ) ? ( empty( $path ) ? '.' : $path ) : $installPath . '/' . $path; 125 $autoloads[ $namespace ][] = array( 126 'path' => $relativePath, 127 'version' => $package->getVersion(), // Version of the class comes from the package - should we try to parse it? 128 ); 124 125 if ( 'psr-4' === $type && isset( $autoload['psr-4'] ) && is_array( $autoload['psr-4'] ) ) { 126 foreach ( $autoload['psr-4'] as $namespace => $paths ) { 127 $paths = is_array( $paths ) ? $paths : array( $paths ); 128 foreach ( $paths as $path ) { 129 $relativePath = empty( $installPath ) ? ( empty( $path ) ? '.' : $path ) : $installPath . '/' . $path; 130 $autoloads[ $namespace ][] = array( 131 'path' => $relativePath, 132 'version' => $package->getVersion(), // Version of the class comes from the package - should we try to parse it? 133 ); 134 } 129 135 } 130 136 } 131 } 137 138 if ( 'classmap' === $type && isset( $autoload['classmap'] ) && is_array( $autoload['classmap'] ) ) { 139 foreach ( $autoload['classmap'] as $paths ) { 140 $paths = is_array( $paths ) ? $paths : array( $paths ); 141 foreach ( $paths as $path ) { 142 $relativePath = empty( $installPath ) ? ( empty( $path ) ? '.' : $path ) : $installPath . '/' . $path; 143 $autoloads[] = array( 144 'path' => $relativePath, 145 'version' => $package->getVersion(), // Version of the class comes from the package - should we try to parse it? 146 ); 147 } 148 } 149 } 150 } 151 132 152 return $autoloads; 133 153 } … … 144 164 */ 145 165 private function getClassMap( array $autoloads, Filesystem $filesystem, $vendorPath, $basePath ) { 146 $blacklist = null; // not supported for now. 166 $blacklist = null; 167 168 if ( ! empty( $autoloads['exclude-from-classmap'] ) ) { 169 $blacklist = '{(' . implode( '|', $autoloads['exclude-from-classmap'] ) . ')}'; 170 } 171 147 172 $classmapString = ''; 148 173 149 // Scan the PSR-4 directories for class files, and add them to the class map.174 // Scan the PSR-4 and classmap directories for class files, and add them to the class map. 150 175 foreach ( $autoloads['psr-4'] as $namespace => $packages_info ) { 151 176 foreach ( $packages_info as $package ) { … … 172 197 } 173 198 199 foreach ( $autoloads['classmap'] as $package ) { 200 $dir = $filesystem->normalizePath( 201 $filesystem->isAbsolutePath( $package['path'] ) 202 ? $package['path'] 203 : $basePath . '/' . $package['path'] 204 ); 205 $map = ClassMapGenerator::createMap( $dir, $blacklist, $this->io, null ); 206 207 foreach ( $map as $class => $path ) { 208 $classCode = var_export( $class, true ); 209 $pathCode = $this->getPathCode( $filesystem, $basePath, $vendorPath, $path ); 210 $versionCode = var_export( $package['version'], true ); 211 $classmapString .= <<<CLASS_CODE 212 $classCode => array( 213 'version' => $versionCode, 214 'path' => $pathCode 215 ), 216 CLASS_CODE; 217 $classmapString .= PHP_EOL; 218 } 219 } 220 174 221 return 'array( ' . PHP_EOL . $classmapString . ');' . PHP_EOL; 175 176 222 } 177 223 … … 191 237 192 238 \$vendorDir = dirname(__DIR__); 239 \$baseDir = dirname(\$vendorDir); 193 240 194 241 return $classMap … … 216 263 enqueue_package_class( \$class_name, \$class_info['version'], \$class_info['path'] ); 217 264 } 218 \$legacy_class_map = require_once dirname( __FILE__ ) . '/composer/autoload_classmap.php';219 foreach ( \$legacy_class_map as \$class_name => \$class_path ) {220 enqueue_package_class( \$class_name, '0.1', \$class_path );221 }222 265 } 223 266 enqueue_packages_$suffix(); 224 267 225 268 INCLUDE_FILES; 226 269 -
vaultpress/trunk/vendor/automattic/jetpack-autoloader/src/autoload.php
r2105838 r2120144 74 74 if ( isset( $jetpack_packages_classes[ $class_name ] ) ) { 75 75 if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) { 76 // TODO ideally we shouldn't skip any of these, see: https://github.com/Automattic/jetpack/pull/12646 76 // TODO ideally we shouldn't skip any of these, see: https://github.com/Automattic/jetpack/pull/12646. 77 77 $ignore = in_array( 78 78 $class_name, … … 81 81 'Automattic\Jetpack\Connection\Manager', 82 82 'Automattic\Jetpack\Connection\Manager_Interface', 83 'Automattic\Jetpack\Connection\XMLRPC_Connector', 83 84 'Jetpack_Options', 84 'Jetpack_Sync_Main', 85 'Jetpack_Signature', 86 'Automattic\Jetpack\Sync\Main', 85 87 'Automattic\Jetpack\Constants', 88 'Automattic\Jetpack\Tracking', 89 'Automattic\Jetpack\Plugin\Tracking', 86 90 ), 87 91 true -
vaultpress/trunk/vendor/composer/ClassLoader.php
r2105838 r2120144 280 280 public function setApcuPrefix($apcuPrefix) 281 281 { 282 $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null;282 $this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $apcuPrefix : null; 283 283 } 284 284 -
vaultpress/trunk/vendor/composer/autoload_classmap_package.php
r2105838 r2120144 4 4 5 5 $vendorDir = dirname(__DIR__); 6 $baseDir = dirname($vendorDir); 6 7 7 8 return array( … … 43 44 ), 44 45 'Automattic\\Jetpack\\Autoloader\\AutoloadGenerator' => array( 45 'version' => '1. 0.0.0',46 'version' => '1.2.0.0', 46 47 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadGenerator.php' 47 48 ), 48 49 'Automattic\\Jetpack\\Autoloader\\CustomAutoloaderPlugin' => array( 49 'version' => '1. 0.0.0',50 'version' => '1.2.0.0', 50 51 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/CustomAutoloaderPlugin.php' 51 52 ), -
vaultpress/trunk/vendor/composer/autoload_real.php
r2105838 r2120144 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit 76a95635ff5cbd7e495a8140e57027cc5 class ComposerAutoloaderInit0aa68f31982b323d4ac5bad295d680bc 6 6 { 7 7 private static $loader; … … 20 20 } 21 21 22 spl_autoload_register(array('ComposerAutoloaderInit 76a95635ff5cbd7e495a8140e57027cc', 'loadClassLoader'), true, true);22 spl_autoload_register(array('ComposerAutoloaderInit0aa68f31982b323d4ac5bad295d680bc', 'loadClassLoader'), true, true); 23 23 self::$loader = $loader = new \Composer\Autoload\ClassLoader(); 24 spl_autoload_unregister(array('ComposerAutoloaderInit 76a95635ff5cbd7e495a8140e57027cc', 'loadClassLoader'));24 spl_autoload_unregister(array('ComposerAutoloaderInit0aa68f31982b323d4ac5bad295d680bc', '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 76a95635ff5cbd7e495a8140e57027cc::getInitializer($loader));30 call_user_func(\Composer\Autoload\ComposerStaticInit0aa68f31982b323d4ac5bad295d680bc::getInitializer($loader)); 31 31 } else { 32 32 $map = require __DIR__ . '/autoload_namespaces.php'; -
vaultpress/trunk/vendor/composer/autoload_static.php
r2105838 r2120144 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit 76a95635ff5cbd7e495a8140e57027cc7 class ComposerStaticInit0aa68f31982b323d4ac5bad295d680bc 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( … … 50 50 { 51 51 return \Closure::bind(function () use ($loader) { 52 $loader->prefixLengthsPsr4 = ComposerStaticInit 76a95635ff5cbd7e495a8140e57027cc::$prefixLengthsPsr4;53 $loader->prefixDirsPsr4 = ComposerStaticInit 76a95635ff5cbd7e495a8140e57027cc::$prefixDirsPsr4;52 $loader->prefixLengthsPsr4 = ComposerStaticInit0aa68f31982b323d4ac5bad295d680bc::$prefixLengthsPsr4; 53 $loader->prefixDirsPsr4 = ComposerStaticInit0aa68f31982b323d4ac5bad295d680bc::$prefixDirsPsr4; 54 54 55 55 }, null, ClassLoader::class); -
vaultpress/trunk/vendor/composer/installed.json
r2105838 r2120144 2 2 { 3 3 "name": "automattic/jetpack-autoloader", 4 "version": "v1. 0.0",5 "version_normalized": "1. 0.0.0",4 "version": "v1.2.0", 5 "version_normalized": "1.2.0.0", 6 6 "source": { 7 7 "type": "git", 8 8 "url": "https://github.com/Automattic/jetpack-autoloader.git", 9 "reference": " 9e2016d791cad88842f8d501133653b70794e9d2"10 }, 11 "dist": { 12 "type": "zip", 13 "url": "https://api.github.com/repos/Automattic/jetpack-autoloader/zipball/ 9e2016d791cad88842f8d501133653b70794e9d2",14 "reference": " 9e2016d791cad88842f8d501133653b70794e9d2",9 "reference": "4ad9631e68e9da8b8a764615766287becfb27f81" 10 }, 11 "dist": { 12 "type": "zip", 13 "url": "https://api.github.com/repos/Automattic/jetpack-autoloader/zipball/4ad9631e68e9da8b8a764615766287becfb27f81", 14 "reference": "4ad9631e68e9da8b8a764615766287becfb27f81", 15 15 "shasum": "" 16 16 }, … … 18 18 "composer-plugin-api": "^1.1" 19 19 }, 20 "time": "2019-06-11T16:14:45+00:00", 20 "require-dev": { 21 "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5" 22 }, 23 "time": "2019-06-24T15:13:23+00:00", 21 24 "type": "composer-plugin", 22 25 "extra": { … … 177 180 { 178 181 "name": "phpcompatibility/php-compatibility", 179 "version": "9. 1.1",180 "version_normalized": "9. 1.1.0",182 "version": "9.2.0", 183 "version_normalized": "9.2.0.0", 181 184 "source": { 182 185 "type": "git", 183 186 "url": "https://github.com/PHPCompatibility/PHPCompatibility.git", 184 "reference": " 2b63c5d284ab8857f7b1d5c240ddb507a6b2293c"185 }, 186 "dist": { 187 "type": "zip", 188 "url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibility/zipball/ 2b63c5d284ab8857f7b1d5c240ddb507a6b2293c",189 "reference": " 2b63c5d284ab8857f7b1d5c240ddb507a6b2293c",187 "reference": "3db1bf1e28123fd574a4ae2e9a84072826d51b5e" 188 }, 189 "dist": { 190 "type": "zip", 191 "url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibility/zipball/3db1bf1e28123fd574a4ae2e9a84072826d51b5e", 192 "reference": "3db1bf1e28123fd574a4ae2e9a84072826d51b5e", 190 193 "shasum": "" 191 194 }, … … 201 204 }, 202 205 "suggest": { 203 "dealerdirect/phpcodesniffer-composer-installer": "^0. 4.3|| This Composer plugin will sort out the PHPCS 'installed_paths' automatically.",206 "dealerdirect/phpcodesniffer-composer-installer": "^0.5 || This Composer plugin will sort out the PHPCS 'installed_paths' automatically.", 204 207 "roave/security-advisories": "dev-master || Helps prevent installing dependencies with known security issues." 205 208 }, 206 "time": "201 8-12-30T23:16:27+00:00",209 "time": "2019-06-27T19:58:56+00:00", 207 210 "type": "phpcodesniffer-standard", 208 211 "installation-source": "dist", … … 447 450 "source": { 448 451 "type": "git", 449 "url": "https://github.com/WordPress -Coding-Standards/WordPress-Coding-Standards.git",452 "url": "https://github.com/WordPress/WordPress-Coding-Standards.git", 450 453 "reference": "bd9c33152115e6741e3510ff7189605b35167908" 451 454 }, 452 455 "dist": { 453 456 "type": "zip", 454 "url": "https://api.github.com/repos/WordPress -Coding-Standards/WordPress-Coding-Standards/zipball/bd9c33152115e6741e3510ff7189605b35167908",457 "url": "https://api.github.com/repos/WordPress/WordPress-Coding-Standards/zipball/bd9c33152115e6741e3510ff7189605b35167908", 455 458 "reference": "bd9c33152115e6741e3510ff7189605b35167908", 456 459 "shasum": ""
Note: See TracChangeset
for help on using the changeset viewer.