├── screenshot.png ├── .gitignore ├── functions.php ├── index.php ├── style.css ├── .editorconfig ├── theme.json ├── composer.json ├── README.md ├── .github └── workflows │ └── assertions.yml ├── .phpcs.xml └── composer.lock /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebDevStudios/wds-headless-theme/HEAD/screenshot.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # os 2 | *~ 3 | .DS_* 4 | .svn/ 5 | .cvs/ 6 | .hg/ 7 | *.bak 8 | *.swp 9 | Thumbs.db 10 | 11 | # composer 12 | vendor/ 13 | -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- 1 | 6 | Author URI: https://webdevstudios.com/ 7 | Version: 1.0.0 8 | Requires at least: 5.6 9 | Tested up to: 5.8 10 | Requires PHP: 7.4 11 | Text Domain: wds 12 | */ 13 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # This file is for unifying the coding style for different editors and IDEs 2 | # editorconfig.org 3 | 4 | # WordPress Coding Standards 5 | # https://make.wordpress.org/core/handbook/coding-standards/ 6 | 7 | root = true 8 | 9 | [*] 10 | charset = utf-8 11 | end_of_line = lf 12 | insert_final_newline = true 13 | trim_trailing_whitespace = true 14 | indent_style = tab 15 | 16 | [*.yml] 17 | indent_style = space 18 | indent_size = 2 19 | 20 | [*.md] 21 | trim_trailing_whitespace = false 22 | -------------------------------------------------------------------------------- /theme.json: -------------------------------------------------------------------------------- 1 | { 2 | "global": { 3 | "settings": { 4 | "typography": { 5 | "customFontSize": false, 6 | "customLineHeight": false, 7 | "dropCap": false, 8 | "fontSizes": [] 9 | }, 10 | "color": { 11 | "custom": false, 12 | "customGradient": false, 13 | "gradients": [], 14 | "palette": [] 15 | } 16 | } 17 | }, 18 | "core/paragraph": { 19 | "settings": { 20 | "color": { 21 | "custom": false, 22 | "customGradient": false 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "webdevstudios/wds-headless-theme", 3 | "description": "WordPress theme for the Next.js WordPress Starter.", 4 | "homepage": "https://github.com/WebDevStudios/nextjs-wordpress-starter", 5 | "type": "wordpress-theme", 6 | "license": "GPL-2.0-or-later", 7 | "authors": [ 8 | { 9 | "name": "WebDevStudios", 10 | "email": "contact@webdevstudios.com" 11 | } 12 | ], 13 | "require-dev": { 14 | "dealerdirect/phpcodesniffer-composer-installer": "^0.7", 15 | "phpcompatibility/phpcompatibility-wp": "^2.1", 16 | "wp-cli/wp-cli-bundle": "^2.5", 17 | "wp-coding-standards/wpcs": "^2.3" 18 | }, 19 | "scripts": { 20 | "format": "./vendor/bin/phpcbf --standard=.phpcs.xml --report=summary,source", 21 | "lint": "./vendor/bin/phpcs --standard=.phpcs.xml --report=summary,source" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WDS Headless Theme 2 | 3 | [![WebDevStudios. Your Success is Our Mission.](https://webdevstudios.com/wp-content/uploads/2024/02/wds-banner.png)](https://webdevstudios.com/contact/) 4 | 5 | 6 | As of 02/27/2024, this repository has been archived and is now read-only. 7 | 8 | This project is outdated and no longer being maintained. WebDevStudios has developed different methods for headless WordPress projects that we may publish to a public repo in the future. We are grateful for the engagement here, and for all contributions and discussions. 9 | 10 | While this repository is no longer actively maintained, we're keeping it available for historical reference and for those who might still find the code useful. 11 | 12 | For the latest on our projects and developments, please visit https://webdevstudios.com 13 | 14 | Thank you for your support and contributions over the years. We hope you continue to find value in our past work and join us in our new ventures. 15 | 16 | WebDevStudios / WD3, LLC 17 | -------------------------------------------------------------------------------- /.github/workflows/assertions.yml: -------------------------------------------------------------------------------- 1 | name: Assertions 2 | 3 | on: 4 | pull_request: 5 | branches: main 6 | 7 | workflow_dispatch: 8 | 9 | jobs: 10 | lint: 11 | runs-on: ubuntu-latest 12 | 13 | strategy: 14 | matrix: 15 | php-versions: ["7.4"] 16 | 17 | steps: 18 | - name: Checkout repository 19 | uses: actions/checkout@v2 20 | with: 21 | token: ${{ github.token }} 22 | 23 | - name: Setup PHP ${{ matrix.php-versions }} 24 | uses: shivammathur/setup-php@v2 25 | with: 26 | php-version: ${{ matrix.php-versions }} 27 | tools: composer:v2, phpcs 28 | 29 | - name: Cache Composer dependencies 30 | uses: actions/cache@v2 31 | with: 32 | path: vendor 33 | key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} 34 | restore-keys: ${{ runner.OS }}-composer- 35 | 36 | - name: Install dependencies 37 | run: composer install 38 | 39 | - name: Lint 40 | run: composer run lint 41 | -------------------------------------------------------------------------------- /.phpcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Apply WordPress Coding Standards 4 | 5 | 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 | /node_modules/* 48 | /vendor/* 49 | 50 | -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- 1 | { 2 | "_readme": [ 3 | "This file locks the dependencies of your project to a known state", 4 | "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", 5 | "This file is @generated automatically" 6 | ], 7 | "content-hash": "06e62c3a8db68ee94feef0aa59b43d05", 8 | "packages": [], 9 | "packages-dev": [ 10 | { 11 | "name": "composer/ca-bundle", 12 | "version": "1.2.11", 13 | "source": { 14 | "type": "git", 15 | "url": "https://github.com/composer/ca-bundle.git", 16 | "reference": "0b072d51c5a9c6f3412f7ea3ab043d6603cb2582" 17 | }, 18 | "dist": { 19 | "type": "zip", 20 | "url": "https://api.github.com/repos/composer/ca-bundle/zipball/0b072d51c5a9c6f3412f7ea3ab043d6603cb2582", 21 | "reference": "0b072d51c5a9c6f3412f7ea3ab043d6603cb2582", 22 | "shasum": "" 23 | }, 24 | "require": { 25 | "ext-openssl": "*", 26 | "ext-pcre": "*", 27 | "php": "^5.3.2 || ^7.0 || ^8.0" 28 | }, 29 | "require-dev": { 30 | "phpstan/phpstan": "^0.12.55", 31 | "psr/log": "^1.0", 32 | "symfony/phpunit-bridge": "^4.2 || ^5", 33 | "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0" 34 | }, 35 | "type": "library", 36 | "extra": { 37 | "branch-alias": { 38 | "dev-main": "1.x-dev" 39 | } 40 | }, 41 | "autoload": { 42 | "psr-4": { 43 | "Composer\\CaBundle\\": "src" 44 | } 45 | }, 46 | "notification-url": "https://packagist.org/downloads/", 47 | "license": [ 48 | "MIT" 49 | ], 50 | "authors": [ 51 | { 52 | "name": "Jordi Boggiano", 53 | "email": "j.boggiano@seld.be", 54 | "homepage": "http://seld.be" 55 | } 56 | ], 57 | "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.", 58 | "keywords": [ 59 | "cabundle", 60 | "cacert", 61 | "certificate", 62 | "ssl", 63 | "tls" 64 | ], 65 | "support": { 66 | "irc": "irc://irc.freenode.org/composer", 67 | "issues": "https://github.com/composer/ca-bundle/issues", 68 | "source": "https://github.com/composer/ca-bundle/tree/1.2.11" 69 | }, 70 | "funding": [ 71 | { 72 | "url": "https://packagist.com", 73 | "type": "custom" 74 | }, 75 | { 76 | "url": "https://github.com/composer", 77 | "type": "github" 78 | }, 79 | { 80 | "url": "https://tidelift.com/funding/github/packagist/composer/composer", 81 | "type": "tidelift" 82 | } 83 | ], 84 | "time": "2021-09-25T20:32:43+00:00" 85 | }, 86 | { 87 | "name": "composer/composer", 88 | "version": "2.1.8", 89 | "source": { 90 | "type": "git", 91 | "url": "https://github.com/composer/composer.git", 92 | "reference": "24d38e9686092de05214cafa187dc282a5d89497" 93 | }, 94 | "dist": { 95 | "type": "zip", 96 | "url": "https://api.github.com/repos/composer/composer/zipball/24d38e9686092de05214cafa187dc282a5d89497", 97 | "reference": "24d38e9686092de05214cafa187dc282a5d89497", 98 | "shasum": "" 99 | }, 100 | "require": { 101 | "composer/ca-bundle": "^1.0", 102 | "composer/metadata-minifier": "^1.0", 103 | "composer/semver": "^3.0", 104 | "composer/spdx-licenses": "^1.2", 105 | "composer/xdebug-handler": "^2.0", 106 | "justinrainbow/json-schema": "^5.2.11", 107 | "php": "^5.3.2 || ^7.0 || ^8.0", 108 | "psr/log": "^1.0", 109 | "react/promise": "^1.2 || ^2.7", 110 | "seld/jsonlint": "^1.4", 111 | "seld/phar-utils": "^1.0", 112 | "symfony/console": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0", 113 | "symfony/filesystem": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0", 114 | "symfony/finder": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0", 115 | "symfony/process": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0" 116 | }, 117 | "require-dev": { 118 | "phpspec/prophecy": "^1.10", 119 | "symfony/phpunit-bridge": "^4.2 || ^5.0 || ^6.0" 120 | }, 121 | "suggest": { 122 | "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages", 123 | "ext-zip": "Enabling the zip extension allows you to unzip archives", 124 | "ext-zlib": "Allow gzip compression of HTTP requests" 125 | }, 126 | "bin": [ 127 | "bin/composer" 128 | ], 129 | "type": "library", 130 | "extra": { 131 | "branch-alias": { 132 | "dev-master": "2.1-dev" 133 | } 134 | }, 135 | "autoload": { 136 | "psr-4": { 137 | "Composer\\": "src/Composer" 138 | } 139 | }, 140 | "notification-url": "https://packagist.org/downloads/", 141 | "license": [ 142 | "MIT" 143 | ], 144 | "authors": [ 145 | { 146 | "name": "Nils Adermann", 147 | "email": "naderman@naderman.de", 148 | "homepage": "https://www.naderman.de" 149 | }, 150 | { 151 | "name": "Jordi Boggiano", 152 | "email": "j.boggiano@seld.be", 153 | "homepage": "https://seld.be" 154 | } 155 | ], 156 | "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.", 157 | "homepage": "https://getcomposer.org/", 158 | "keywords": [ 159 | "autoload", 160 | "dependency", 161 | "package" 162 | ], 163 | "support": { 164 | "irc": "ircs://irc.libera.chat:6697/composer", 165 | "issues": "https://github.com/composer/composer/issues", 166 | "source": "https://github.com/composer/composer/tree/2.1.8" 167 | }, 168 | "funding": [ 169 | { 170 | "url": "https://packagist.com", 171 | "type": "custom" 172 | }, 173 | { 174 | "url": "https://github.com/composer", 175 | "type": "github" 176 | }, 177 | { 178 | "url": "https://tidelift.com/funding/github/packagist/composer/composer", 179 | "type": "tidelift" 180 | } 181 | ], 182 | "time": "2021-09-15T11:55:15+00:00" 183 | }, 184 | { 185 | "name": "composer/metadata-minifier", 186 | "version": "1.0.0", 187 | "source": { 188 | "type": "git", 189 | "url": "https://github.com/composer/metadata-minifier.git", 190 | "reference": "c549d23829536f0d0e984aaabbf02af91f443207" 191 | }, 192 | "dist": { 193 | "type": "zip", 194 | "url": "https://api.github.com/repos/composer/metadata-minifier/zipball/c549d23829536f0d0e984aaabbf02af91f443207", 195 | "reference": "c549d23829536f0d0e984aaabbf02af91f443207", 196 | "shasum": "" 197 | }, 198 | "require": { 199 | "php": "^5.3.2 || ^7.0 || ^8.0" 200 | }, 201 | "require-dev": { 202 | "composer/composer": "^2", 203 | "phpstan/phpstan": "^0.12.55", 204 | "symfony/phpunit-bridge": "^4.2 || ^5" 205 | }, 206 | "type": "library", 207 | "extra": { 208 | "branch-alias": { 209 | "dev-main": "1.x-dev" 210 | } 211 | }, 212 | "autoload": { 213 | "psr-4": { 214 | "Composer\\MetadataMinifier\\": "src" 215 | } 216 | }, 217 | "notification-url": "https://packagist.org/downloads/", 218 | "license": [ 219 | "MIT" 220 | ], 221 | "authors": [ 222 | { 223 | "name": "Jordi Boggiano", 224 | "email": "j.boggiano@seld.be", 225 | "homepage": "http://seld.be" 226 | } 227 | ], 228 | "description": "Small utility library that handles metadata minification and expansion.", 229 | "keywords": [ 230 | "composer", 231 | "compression" 232 | ], 233 | "support": { 234 | "issues": "https://github.com/composer/metadata-minifier/issues", 235 | "source": "https://github.com/composer/metadata-minifier/tree/1.0.0" 236 | }, 237 | "funding": [ 238 | { 239 | "url": "https://packagist.com", 240 | "type": "custom" 241 | }, 242 | { 243 | "url": "https://github.com/composer", 244 | "type": "github" 245 | }, 246 | { 247 | "url": "https://tidelift.com/funding/github/packagist/composer/composer", 248 | "type": "tidelift" 249 | } 250 | ], 251 | "time": "2021-04-07T13:37:33+00:00" 252 | }, 253 | { 254 | "name": "composer/semver", 255 | "version": "3.2.5", 256 | "source": { 257 | "type": "git", 258 | "url": "https://github.com/composer/semver.git", 259 | "reference": "31f3ea725711245195f62e54ffa402d8ef2fdba9" 260 | }, 261 | "dist": { 262 | "type": "zip", 263 | "url": "https://api.github.com/repos/composer/semver/zipball/31f3ea725711245195f62e54ffa402d8ef2fdba9", 264 | "reference": "31f3ea725711245195f62e54ffa402d8ef2fdba9", 265 | "shasum": "" 266 | }, 267 | "require": { 268 | "php": "^5.3.2 || ^7.0 || ^8.0" 269 | }, 270 | "require-dev": { 271 | "phpstan/phpstan": "^0.12.54", 272 | "symfony/phpunit-bridge": "^4.2 || ^5" 273 | }, 274 | "type": "library", 275 | "extra": { 276 | "branch-alias": { 277 | "dev-main": "3.x-dev" 278 | } 279 | }, 280 | "autoload": { 281 | "psr-4": { 282 | "Composer\\Semver\\": "src" 283 | } 284 | }, 285 | "notification-url": "https://packagist.org/downloads/", 286 | "license": [ 287 | "MIT" 288 | ], 289 | "authors": [ 290 | { 291 | "name": "Nils Adermann", 292 | "email": "naderman@naderman.de", 293 | "homepage": "http://www.naderman.de" 294 | }, 295 | { 296 | "name": "Jordi Boggiano", 297 | "email": "j.boggiano@seld.be", 298 | "homepage": "http://seld.be" 299 | }, 300 | { 301 | "name": "Rob Bast", 302 | "email": "rob.bast@gmail.com", 303 | "homepage": "http://robbast.nl" 304 | } 305 | ], 306 | "description": "Semver library that offers utilities, version constraint parsing and validation.", 307 | "keywords": [ 308 | "semantic", 309 | "semver", 310 | "validation", 311 | "versioning" 312 | ], 313 | "support": { 314 | "irc": "irc://irc.freenode.org/composer", 315 | "issues": "https://github.com/composer/semver/issues", 316 | "source": "https://github.com/composer/semver/tree/3.2.5" 317 | }, 318 | "funding": [ 319 | { 320 | "url": "https://packagist.com", 321 | "type": "custom" 322 | }, 323 | { 324 | "url": "https://github.com/composer", 325 | "type": "github" 326 | }, 327 | { 328 | "url": "https://tidelift.com/funding/github/packagist/composer/composer", 329 | "type": "tidelift" 330 | } 331 | ], 332 | "time": "2021-05-24T12:41:47+00:00" 333 | }, 334 | { 335 | "name": "composer/spdx-licenses", 336 | "version": "1.5.5", 337 | "source": { 338 | "type": "git", 339 | "url": "https://github.com/composer/spdx-licenses.git", 340 | "reference": "de30328a7af8680efdc03e396aad24befd513200" 341 | }, 342 | "dist": { 343 | "type": "zip", 344 | "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/de30328a7af8680efdc03e396aad24befd513200", 345 | "reference": "de30328a7af8680efdc03e396aad24befd513200", 346 | "shasum": "" 347 | }, 348 | "require": { 349 | "php": "^5.3.2 || ^7.0 || ^8.0" 350 | }, 351 | "require-dev": { 352 | "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7" 353 | }, 354 | "type": "library", 355 | "extra": { 356 | "branch-alias": { 357 | "dev-main": "1.x-dev" 358 | } 359 | }, 360 | "autoload": { 361 | "psr-4": { 362 | "Composer\\Spdx\\": "src" 363 | } 364 | }, 365 | "notification-url": "https://packagist.org/downloads/", 366 | "license": [ 367 | "MIT" 368 | ], 369 | "authors": [ 370 | { 371 | "name": "Nils Adermann", 372 | "email": "naderman@naderman.de", 373 | "homepage": "http://www.naderman.de" 374 | }, 375 | { 376 | "name": "Jordi Boggiano", 377 | "email": "j.boggiano@seld.be", 378 | "homepage": "http://seld.be" 379 | }, 380 | { 381 | "name": "Rob Bast", 382 | "email": "rob.bast@gmail.com", 383 | "homepage": "http://robbast.nl" 384 | } 385 | ], 386 | "description": "SPDX licenses list and validation library.", 387 | "keywords": [ 388 | "license", 389 | "spdx", 390 | "validator" 391 | ], 392 | "support": { 393 | "irc": "irc://irc.freenode.org/composer", 394 | "issues": "https://github.com/composer/spdx-licenses/issues", 395 | "source": "https://github.com/composer/spdx-licenses/tree/1.5.5" 396 | }, 397 | "funding": [ 398 | { 399 | "url": "https://packagist.com", 400 | "type": "custom" 401 | }, 402 | { 403 | "url": "https://github.com/composer", 404 | "type": "github" 405 | }, 406 | { 407 | "url": "https://tidelift.com/funding/github/packagist/composer/composer", 408 | "type": "tidelift" 409 | } 410 | ], 411 | "time": "2020-12-03T16:04:16+00:00" 412 | }, 413 | { 414 | "name": "composer/xdebug-handler", 415 | "version": "2.0.2", 416 | "source": { 417 | "type": "git", 418 | "url": "https://github.com/composer/xdebug-handler.git", 419 | "reference": "84674dd3a7575ba617f5a76d7e9e29a7d3891339" 420 | }, 421 | "dist": { 422 | "type": "zip", 423 | "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/84674dd3a7575ba617f5a76d7e9e29a7d3891339", 424 | "reference": "84674dd3a7575ba617f5a76d7e9e29a7d3891339", 425 | "shasum": "" 426 | }, 427 | "require": { 428 | "php": "^5.3.2 || ^7.0 || ^8.0", 429 | "psr/log": "^1 || ^2 || ^3" 430 | }, 431 | "require-dev": { 432 | "phpstan/phpstan": "^0.12.55", 433 | "symfony/phpunit-bridge": "^4.2 || ^5" 434 | }, 435 | "type": "library", 436 | "autoload": { 437 | "psr-4": { 438 | "Composer\\XdebugHandler\\": "src" 439 | } 440 | }, 441 | "notification-url": "https://packagist.org/downloads/", 442 | "license": [ 443 | "MIT" 444 | ], 445 | "authors": [ 446 | { 447 | "name": "John Stevenson", 448 | "email": "john-stevenson@blueyonder.co.uk" 449 | } 450 | ], 451 | "description": "Restarts a process without Xdebug.", 452 | "keywords": [ 453 | "Xdebug", 454 | "performance" 455 | ], 456 | "support": { 457 | "irc": "irc://irc.freenode.org/composer", 458 | "issues": "https://github.com/composer/xdebug-handler/issues", 459 | "source": "https://github.com/composer/xdebug-handler/tree/2.0.2" 460 | }, 461 | "funding": [ 462 | { 463 | "url": "https://packagist.com", 464 | "type": "custom" 465 | }, 466 | { 467 | "url": "https://github.com/composer", 468 | "type": "github" 469 | }, 470 | { 471 | "url": "https://tidelift.com/funding/github/packagist/composer/composer", 472 | "type": "tidelift" 473 | } 474 | ], 475 | "time": "2021-07-31T17:03:58+00:00" 476 | }, 477 | { 478 | "name": "dealerdirect/phpcodesniffer-composer-installer", 479 | "version": "v0.7.1", 480 | "source": { 481 | "type": "git", 482 | "url": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer.git", 483 | "reference": "fe390591e0241955f22eb9ba327d137e501c771c" 484 | }, 485 | "dist": { 486 | "type": "zip", 487 | "url": "https://api.github.com/repos/Dealerdirect/phpcodesniffer-composer-installer/zipball/fe390591e0241955f22eb9ba327d137e501c771c", 488 | "reference": "fe390591e0241955f22eb9ba327d137e501c771c", 489 | "shasum": "" 490 | }, 491 | "require": { 492 | "composer-plugin-api": "^1.0 || ^2.0", 493 | "php": ">=5.3", 494 | "squizlabs/php_codesniffer": "^2.0 || ^3.0 || ^4.0" 495 | }, 496 | "require-dev": { 497 | "composer/composer": "*", 498 | "phpcompatibility/php-compatibility": "^9.0", 499 | "sensiolabs/security-checker": "^4.1.0" 500 | }, 501 | "type": "composer-plugin", 502 | "extra": { 503 | "class": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin" 504 | }, 505 | "autoload": { 506 | "psr-4": { 507 | "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/" 508 | } 509 | }, 510 | "notification-url": "https://packagist.org/downloads/", 511 | "license": [ 512 | "MIT" 513 | ], 514 | "authors": [ 515 | { 516 | "name": "Franck Nijhof", 517 | "email": "franck.nijhof@dealerdirect.com", 518 | "homepage": "http://www.frenck.nl", 519 | "role": "Developer / IT Manager" 520 | } 521 | ], 522 | "description": "PHP_CodeSniffer Standards Composer Installer Plugin", 523 | "homepage": "http://www.dealerdirect.com", 524 | "keywords": [ 525 | "PHPCodeSniffer", 526 | "PHP_CodeSniffer", 527 | "code quality", 528 | "codesniffer", 529 | "composer", 530 | "installer", 531 | "phpcs", 532 | "plugin", 533 | "qa", 534 | "quality", 535 | "standard", 536 | "standards", 537 | "style guide", 538 | "stylecheck", 539 | "tests" 540 | ], 541 | "support": { 542 | "issues": "https://github.com/dealerdirect/phpcodesniffer-composer-installer/issues", 543 | "source": "https://github.com/dealerdirect/phpcodesniffer-composer-installer" 544 | }, 545 | "time": "2020-12-07T18:04:37+00:00" 546 | }, 547 | { 548 | "name": "gettext/gettext", 549 | "version": "v4.8.5", 550 | "source": { 551 | "type": "git", 552 | "url": "https://github.com/php-gettext/Gettext.git", 553 | "reference": "ef2e312dff383fc0e4cd62dd39042e1157f137d4" 554 | }, 555 | "dist": { 556 | "type": "zip", 557 | "url": "https://api.github.com/repos/php-gettext/Gettext/zipball/ef2e312dff383fc0e4cd62dd39042e1157f137d4", 558 | "reference": "ef2e312dff383fc0e4cd62dd39042e1157f137d4", 559 | "shasum": "" 560 | }, 561 | "require": { 562 | "gettext/languages": "^2.3", 563 | "php": ">=5.4.0" 564 | }, 565 | "require-dev": { 566 | "illuminate/view": "^5.0.x-dev", 567 | "phpunit/phpunit": "^4.8|^5.7|^6.5", 568 | "squizlabs/php_codesniffer": "^3.0", 569 | "symfony/yaml": "~2", 570 | "twig/extensions": "*", 571 | "twig/twig": "^1.31|^2.0" 572 | }, 573 | "suggest": { 574 | "illuminate/view": "Is necessary if you want to use the Blade extractor", 575 | "symfony/yaml": "Is necessary if you want to use the Yaml extractor/generator", 576 | "twig/extensions": "Is necessary if you want to use the Twig extractor", 577 | "twig/twig": "Is necessary if you want to use the Twig extractor" 578 | }, 579 | "type": "library", 580 | "autoload": { 581 | "psr-4": { 582 | "Gettext\\": "src" 583 | } 584 | }, 585 | "notification-url": "https://packagist.org/downloads/", 586 | "license": [ 587 | "MIT" 588 | ], 589 | "authors": [ 590 | { 591 | "name": "Oscar Otero", 592 | "email": "oom@oscarotero.com", 593 | "homepage": "http://oscarotero.com", 594 | "role": "Developer" 595 | } 596 | ], 597 | "description": "PHP gettext manager", 598 | "homepage": "https://github.com/oscarotero/Gettext", 599 | "keywords": [ 600 | "JS", 601 | "gettext", 602 | "i18n", 603 | "mo", 604 | "po", 605 | "translation" 606 | ], 607 | "support": { 608 | "email": "oom@oscarotero.com", 609 | "issues": "https://github.com/oscarotero/Gettext/issues", 610 | "source": "https://github.com/php-gettext/Gettext/tree/v4.8.5" 611 | }, 612 | "funding": [ 613 | { 614 | "url": "https://paypal.me/oscarotero", 615 | "type": "custom" 616 | }, 617 | { 618 | "url": "https://github.com/oscarotero", 619 | "type": "github" 620 | }, 621 | { 622 | "url": "https://www.patreon.com/misteroom", 623 | "type": "patreon" 624 | } 625 | ], 626 | "time": "2021-07-13T16:45:53+00:00" 627 | }, 628 | { 629 | "name": "gettext/languages", 630 | "version": "2.8.1", 631 | "source": { 632 | "type": "git", 633 | "url": "https://github.com/php-gettext/Languages.git", 634 | "reference": "4ad818b6341e177b7c508ec4c37e18932a7b788a" 635 | }, 636 | "dist": { 637 | "type": "zip", 638 | "url": "https://api.github.com/repos/php-gettext/Languages/zipball/4ad818b6341e177b7c508ec4c37e18932a7b788a", 639 | "reference": "4ad818b6341e177b7c508ec4c37e18932a7b788a", 640 | "shasum": "" 641 | }, 642 | "require": { 643 | "php": ">=5.3" 644 | }, 645 | "require-dev": { 646 | "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5 || ^8.4" 647 | }, 648 | "bin": [ 649 | "bin/export-plural-rules" 650 | ], 651 | "type": "library", 652 | "autoload": { 653 | "psr-4": { 654 | "Gettext\\Languages\\": "src/" 655 | } 656 | }, 657 | "notification-url": "https://packagist.org/downloads/", 658 | "license": [ 659 | "MIT" 660 | ], 661 | "authors": [ 662 | { 663 | "name": "Michele Locati", 664 | "email": "mlocati@gmail.com", 665 | "role": "Developer" 666 | } 667 | ], 668 | "description": "gettext languages with plural rules", 669 | "homepage": "https://github.com/php-gettext/Languages", 670 | "keywords": [ 671 | "cldr", 672 | "i18n", 673 | "internationalization", 674 | "l10n", 675 | "language", 676 | "languages", 677 | "localization", 678 | "php", 679 | "plural", 680 | "plural rules", 681 | "plurals", 682 | "translate", 683 | "translations", 684 | "unicode" 685 | ], 686 | "support": { 687 | "issues": "https://github.com/php-gettext/Languages/issues", 688 | "source": "https://github.com/php-gettext/Languages/tree/2.8.1" 689 | }, 690 | "funding": [ 691 | { 692 | "url": "https://paypal.me/mlocati", 693 | "type": "custom" 694 | }, 695 | { 696 | "url": "https://github.com/mlocati", 697 | "type": "github" 698 | } 699 | ], 700 | "time": "2021-07-14T15:03:58+00:00" 701 | }, 702 | { 703 | "name": "justinrainbow/json-schema", 704 | "version": "5.2.11", 705 | "source": { 706 | "type": "git", 707 | "url": "https://github.com/justinrainbow/json-schema.git", 708 | "reference": "2ab6744b7296ded80f8cc4f9509abbff393399aa" 709 | }, 710 | "dist": { 711 | "type": "zip", 712 | "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ab6744b7296ded80f8cc4f9509abbff393399aa", 713 | "reference": "2ab6744b7296ded80f8cc4f9509abbff393399aa", 714 | "shasum": "" 715 | }, 716 | "require": { 717 | "php": ">=5.3.3" 718 | }, 719 | "require-dev": { 720 | "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1", 721 | "json-schema/json-schema-test-suite": "1.2.0", 722 | "phpunit/phpunit": "^4.8.35" 723 | }, 724 | "bin": [ 725 | "bin/validate-json" 726 | ], 727 | "type": "library", 728 | "extra": { 729 | "branch-alias": { 730 | "dev-master": "5.0.x-dev" 731 | } 732 | }, 733 | "autoload": { 734 | "psr-4": { 735 | "JsonSchema\\": "src/JsonSchema/" 736 | } 737 | }, 738 | "notification-url": "https://packagist.org/downloads/", 739 | "license": [ 740 | "MIT" 741 | ], 742 | "authors": [ 743 | { 744 | "name": "Bruno Prieto Reis", 745 | "email": "bruno.p.reis@gmail.com" 746 | }, 747 | { 748 | "name": "Justin Rainbow", 749 | "email": "justin.rainbow@gmail.com" 750 | }, 751 | { 752 | "name": "Igor Wiedler", 753 | "email": "igor@wiedler.ch" 754 | }, 755 | { 756 | "name": "Robert Schönthal", 757 | "email": "seroscho@googlemail.com" 758 | } 759 | ], 760 | "description": "A library to validate a json schema.", 761 | "homepage": "https://github.com/justinrainbow/json-schema", 762 | "keywords": [ 763 | "json", 764 | "schema" 765 | ], 766 | "support": { 767 | "issues": "https://github.com/justinrainbow/json-schema/issues", 768 | "source": "https://github.com/justinrainbow/json-schema/tree/5.2.11" 769 | }, 770 | "time": "2021-07-22T09:24:00+00:00" 771 | }, 772 | { 773 | "name": "mck89/peast", 774 | "version": "v1.13.8", 775 | "source": { 776 | "type": "git", 777 | "url": "https://github.com/mck89/peast.git", 778 | "reference": "4f0423441ec557f3935b056d10987f2e1c7a3e76" 779 | }, 780 | "dist": { 781 | "type": "zip", 782 | "url": "https://api.github.com/repos/mck89/peast/zipball/4f0423441ec557f3935b056d10987f2e1c7a3e76", 783 | "reference": "4f0423441ec557f3935b056d10987f2e1c7a3e76", 784 | "shasum": "" 785 | }, 786 | "require": { 787 | "php": ">=5.4.0" 788 | }, 789 | "require-dev": { 790 | "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0" 791 | }, 792 | "type": "library", 793 | "extra": { 794 | "branch-alias": { 795 | "dev-master": "1.13.8-dev" 796 | } 797 | }, 798 | "autoload": { 799 | "psr-4": { 800 | "Peast\\": "lib/Peast/", 801 | "Peast\\test\\": "test/Peast/" 802 | } 803 | }, 804 | "notification-url": "https://packagist.org/downloads/", 805 | "license": [ 806 | "BSD-3-Clause" 807 | ], 808 | "authors": [ 809 | { 810 | "name": "Marco Marchiò", 811 | "email": "marco.mm89@gmail.com" 812 | } 813 | ], 814 | "description": "Peast is PHP library that generates AST for JavaScript code", 815 | "support": { 816 | "issues": "https://github.com/mck89/peast/issues", 817 | "source": "https://github.com/mck89/peast/tree/v1.13.8" 818 | }, 819 | "time": "2021-09-11T10:28:18+00:00" 820 | }, 821 | { 822 | "name": "mustache/mustache", 823 | "version": "v2.13.0", 824 | "source": { 825 | "type": "git", 826 | "url": "https://github.com/bobthecow/mustache.php.git", 827 | "reference": "e95c5a008c23d3151d59ea72484d4f72049ab7f4" 828 | }, 829 | "dist": { 830 | "type": "zip", 831 | "url": "https://api.github.com/repos/bobthecow/mustache.php/zipball/e95c5a008c23d3151d59ea72484d4f72049ab7f4", 832 | "reference": "e95c5a008c23d3151d59ea72484d4f72049ab7f4", 833 | "shasum": "" 834 | }, 835 | "require": { 836 | "php": ">=5.2.4" 837 | }, 838 | "require-dev": { 839 | "friendsofphp/php-cs-fixer": "~1.11", 840 | "phpunit/phpunit": "~3.7|~4.0|~5.0" 841 | }, 842 | "type": "library", 843 | "autoload": { 844 | "psr-0": { 845 | "Mustache": "src/" 846 | } 847 | }, 848 | "notification-url": "https://packagist.org/downloads/", 849 | "license": [ 850 | "MIT" 851 | ], 852 | "authors": [ 853 | { 854 | "name": "Justin Hileman", 855 | "email": "justin@justinhileman.info", 856 | "homepage": "http://justinhileman.com" 857 | } 858 | ], 859 | "description": "A Mustache implementation in PHP.", 860 | "homepage": "https://github.com/bobthecow/mustache.php", 861 | "keywords": [ 862 | "mustache", 863 | "templating" 864 | ], 865 | "support": { 866 | "issues": "https://github.com/bobthecow/mustache.php/issues", 867 | "source": "https://github.com/bobthecow/mustache.php/tree/master" 868 | }, 869 | "time": "2019-11-23T21:40:31+00:00" 870 | }, 871 | { 872 | "name": "nb/oxymel", 873 | "version": "v0.1.0", 874 | "source": { 875 | "type": "git", 876 | "url": "https://github.com/nb/oxymel.git", 877 | "reference": "cbe626ef55d5c4cc9b5e6e3904b395861ea76e3c" 878 | }, 879 | "dist": { 880 | "type": "zip", 881 | "url": "https://api.github.com/repos/nb/oxymel/zipball/cbe626ef55d5c4cc9b5e6e3904b395861ea76e3c", 882 | "reference": "cbe626ef55d5c4cc9b5e6e3904b395861ea76e3c", 883 | "shasum": "" 884 | }, 885 | "require": { 886 | "php": ">=5.2.4" 887 | }, 888 | "type": "library", 889 | "autoload": { 890 | "psr-0": { 891 | "Oxymel": "" 892 | } 893 | }, 894 | "notification-url": "https://packagist.org/downloads/", 895 | "license": [ 896 | "MIT" 897 | ], 898 | "authors": [ 899 | { 900 | "name": "Nikolay Bachiyski", 901 | "email": "nb@nikolay.bg", 902 | "homepage": "http://extrapolate.me/" 903 | } 904 | ], 905 | "description": "A sweet XML builder", 906 | "homepage": "https://github.com/nb/oxymel", 907 | "keywords": [ 908 | "xml" 909 | ], 910 | "support": { 911 | "issues": "https://github.com/nb/oxymel/issues", 912 | "source": "https://github.com/nb/oxymel/tree/master" 913 | }, 914 | "time": "2013-02-24T15:01:54+00:00" 915 | }, 916 | { 917 | "name": "phpcompatibility/php-compatibility", 918 | "version": "9.3.5", 919 | "source": { 920 | "type": "git", 921 | "url": "https://github.com/PHPCompatibility/PHPCompatibility.git", 922 | "reference": "9fb324479acf6f39452e0655d2429cc0d3914243" 923 | }, 924 | "dist": { 925 | "type": "zip", 926 | "url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibility/zipball/9fb324479acf6f39452e0655d2429cc0d3914243", 927 | "reference": "9fb324479acf6f39452e0655d2429cc0d3914243", 928 | "shasum": "" 929 | }, 930 | "require": { 931 | "php": ">=5.3", 932 | "squizlabs/php_codesniffer": "^2.3 || ^3.0.2" 933 | }, 934 | "conflict": { 935 | "squizlabs/php_codesniffer": "2.6.2" 936 | }, 937 | "require-dev": { 938 | "phpunit/phpunit": "~4.5 || ^5.0 || ^6.0 || ^7.0" 939 | }, 940 | "suggest": { 941 | "dealerdirect/phpcodesniffer-composer-installer": "^0.5 || This Composer plugin will sort out the PHPCS 'installed_paths' automatically.", 942 | "roave/security-advisories": "dev-master || Helps prevent installing dependencies with known security issues." 943 | }, 944 | "type": "phpcodesniffer-standard", 945 | "notification-url": "https://packagist.org/downloads/", 946 | "license": [ 947 | "LGPL-3.0-or-later" 948 | ], 949 | "authors": [ 950 | { 951 | "name": "Wim Godden", 952 | "homepage": "https://github.com/wimg", 953 | "role": "lead" 954 | }, 955 | { 956 | "name": "Juliette Reinders Folmer", 957 | "homepage": "https://github.com/jrfnl", 958 | "role": "lead" 959 | }, 960 | { 961 | "name": "Contributors", 962 | "homepage": "https://github.com/PHPCompatibility/PHPCompatibility/graphs/contributors" 963 | } 964 | ], 965 | "description": "A set of sniffs for PHP_CodeSniffer that checks for PHP cross-version compatibility.", 966 | "homepage": "http://techblog.wimgodden.be/tag/codesniffer/", 967 | "keywords": [ 968 | "compatibility", 969 | "phpcs", 970 | "standards" 971 | ], 972 | "support": { 973 | "issues": "https://github.com/PHPCompatibility/PHPCompatibility/issues", 974 | "source": "https://github.com/PHPCompatibility/PHPCompatibility" 975 | }, 976 | "time": "2019-12-27T09:44:58+00:00" 977 | }, 978 | { 979 | "name": "phpcompatibility/phpcompatibility-paragonie", 980 | "version": "1.3.1", 981 | "source": { 982 | "type": "git", 983 | "url": "https://github.com/PHPCompatibility/PHPCompatibilityParagonie.git", 984 | "reference": "ddabec839cc003651f2ce695c938686d1086cf43" 985 | }, 986 | "dist": { 987 | "type": "zip", 988 | "url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibilityParagonie/zipball/ddabec839cc003651f2ce695c938686d1086cf43", 989 | "reference": "ddabec839cc003651f2ce695c938686d1086cf43", 990 | "shasum": "" 991 | }, 992 | "require": { 993 | "phpcompatibility/php-compatibility": "^9.0" 994 | }, 995 | "require-dev": { 996 | "dealerdirect/phpcodesniffer-composer-installer": "^0.7", 997 | "paragonie/random_compat": "dev-master", 998 | "paragonie/sodium_compat": "dev-master" 999 | }, 1000 | "suggest": { 1001 | "dealerdirect/phpcodesniffer-composer-installer": "^0.7 || This Composer plugin will sort out the PHP_CodeSniffer 'installed_paths' automatically.", 1002 | "roave/security-advisories": "dev-master || Helps prevent installing dependencies with known security issues." 1003 | }, 1004 | "type": "phpcodesniffer-standard", 1005 | "notification-url": "https://packagist.org/downloads/", 1006 | "license": [ 1007 | "LGPL-3.0-or-later" 1008 | ], 1009 | "authors": [ 1010 | { 1011 | "name": "Wim Godden", 1012 | "role": "lead" 1013 | }, 1014 | { 1015 | "name": "Juliette Reinders Folmer", 1016 | "role": "lead" 1017 | } 1018 | ], 1019 | "description": "A set of rulesets for PHP_CodeSniffer to check for PHP cross-version compatibility issues in projects, while accounting for polyfills provided by the Paragonie polyfill libraries.", 1020 | "homepage": "http://phpcompatibility.com/", 1021 | "keywords": [ 1022 | "compatibility", 1023 | "paragonie", 1024 | "phpcs", 1025 | "polyfill", 1026 | "standards" 1027 | ], 1028 | "support": { 1029 | "issues": "https://github.com/PHPCompatibility/PHPCompatibilityParagonie/issues", 1030 | "source": "https://github.com/PHPCompatibility/PHPCompatibilityParagonie" 1031 | }, 1032 | "time": "2021-02-15T10:24:51+00:00" 1033 | }, 1034 | { 1035 | "name": "phpcompatibility/phpcompatibility-wp", 1036 | "version": "2.1.2", 1037 | "source": { 1038 | "type": "git", 1039 | "url": "https://github.com/PHPCompatibility/PHPCompatibilityWP.git", 1040 | "reference": "a792ab623069f0ce971b2417edef8d9632e32f75" 1041 | }, 1042 | "dist": { 1043 | "type": "zip", 1044 | "url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibilityWP/zipball/a792ab623069f0ce971b2417edef8d9632e32f75", 1045 | "reference": "a792ab623069f0ce971b2417edef8d9632e32f75", 1046 | "shasum": "" 1047 | }, 1048 | "require": { 1049 | "phpcompatibility/php-compatibility": "^9.0", 1050 | "phpcompatibility/phpcompatibility-paragonie": "^1.0" 1051 | }, 1052 | "require-dev": { 1053 | "dealerdirect/phpcodesniffer-composer-installer": "^0.7" 1054 | }, 1055 | "suggest": { 1056 | "dealerdirect/phpcodesniffer-composer-installer": "^0.7 || This Composer plugin will sort out the PHP_CodeSniffer 'installed_paths' automatically.", 1057 | "roave/security-advisories": "dev-master || Helps prevent installing dependencies with known security issues." 1058 | }, 1059 | "type": "phpcodesniffer-standard", 1060 | "notification-url": "https://packagist.org/downloads/", 1061 | "license": [ 1062 | "LGPL-3.0-or-later" 1063 | ], 1064 | "authors": [ 1065 | { 1066 | "name": "Wim Godden", 1067 | "role": "lead" 1068 | }, 1069 | { 1070 | "name": "Juliette Reinders Folmer", 1071 | "role": "lead" 1072 | } 1073 | ], 1074 | "description": "A ruleset for PHP_CodeSniffer to check for PHP cross-version compatibility issues in projects, while accounting for polyfills provided by WordPress.", 1075 | "homepage": "http://phpcompatibility.com/", 1076 | "keywords": [ 1077 | "compatibility", 1078 | "phpcs", 1079 | "standards", 1080 | "wordpress" 1081 | ], 1082 | "support": { 1083 | "issues": "https://github.com/PHPCompatibility/PHPCompatibilityWP/issues", 1084 | "source": "https://github.com/PHPCompatibility/PHPCompatibilityWP" 1085 | }, 1086 | "time": "2021-07-21T11:09:57+00:00" 1087 | }, 1088 | { 1089 | "name": "psr/container", 1090 | "version": "1.1.1", 1091 | "source": { 1092 | "type": "git", 1093 | "url": "https://github.com/php-fig/container.git", 1094 | "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf" 1095 | }, 1096 | "dist": { 1097 | "type": "zip", 1098 | "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf", 1099 | "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf", 1100 | "shasum": "" 1101 | }, 1102 | "require": { 1103 | "php": ">=7.2.0" 1104 | }, 1105 | "type": "library", 1106 | "autoload": { 1107 | "psr-4": { 1108 | "Psr\\Container\\": "src/" 1109 | } 1110 | }, 1111 | "notification-url": "https://packagist.org/downloads/", 1112 | "license": [ 1113 | "MIT" 1114 | ], 1115 | "authors": [ 1116 | { 1117 | "name": "PHP-FIG", 1118 | "homepage": "https://www.php-fig.org/" 1119 | } 1120 | ], 1121 | "description": "Common Container Interface (PHP FIG PSR-11)", 1122 | "homepage": "https://github.com/php-fig/container", 1123 | "keywords": [ 1124 | "PSR-11", 1125 | "container", 1126 | "container-interface", 1127 | "container-interop", 1128 | "psr" 1129 | ], 1130 | "support": { 1131 | "issues": "https://github.com/php-fig/container/issues", 1132 | "source": "https://github.com/php-fig/container/tree/1.1.1" 1133 | }, 1134 | "time": "2021-03-05T17:36:06+00:00" 1135 | }, 1136 | { 1137 | "name": "psr/log", 1138 | "version": "1.1.4", 1139 | "source": { 1140 | "type": "git", 1141 | "url": "https://github.com/php-fig/log.git", 1142 | "reference": "d49695b909c3b7628b6289db5479a1c204601f11" 1143 | }, 1144 | "dist": { 1145 | "type": "zip", 1146 | "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11", 1147 | "reference": "d49695b909c3b7628b6289db5479a1c204601f11", 1148 | "shasum": "" 1149 | }, 1150 | "require": { 1151 | "php": ">=5.3.0" 1152 | }, 1153 | "type": "library", 1154 | "extra": { 1155 | "branch-alias": { 1156 | "dev-master": "1.1.x-dev" 1157 | } 1158 | }, 1159 | "autoload": { 1160 | "psr-4": { 1161 | "Psr\\Log\\": "Psr/Log/" 1162 | } 1163 | }, 1164 | "notification-url": "https://packagist.org/downloads/", 1165 | "license": [ 1166 | "MIT" 1167 | ], 1168 | "authors": [ 1169 | { 1170 | "name": "PHP-FIG", 1171 | "homepage": "https://www.php-fig.org/" 1172 | } 1173 | ], 1174 | "description": "Common interface for logging libraries", 1175 | "homepage": "https://github.com/php-fig/log", 1176 | "keywords": [ 1177 | "log", 1178 | "psr", 1179 | "psr-3" 1180 | ], 1181 | "support": { 1182 | "source": "https://github.com/php-fig/log/tree/1.1.4" 1183 | }, 1184 | "time": "2021-05-03T11:20:27+00:00" 1185 | }, 1186 | { 1187 | "name": "react/promise", 1188 | "version": "v2.8.0", 1189 | "source": { 1190 | "type": "git", 1191 | "url": "https://github.com/reactphp/promise.git", 1192 | "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4" 1193 | }, 1194 | "dist": { 1195 | "type": "zip", 1196 | "url": "https://api.github.com/repos/reactphp/promise/zipball/f3cff96a19736714524ca0dd1d4130de73dbbbc4", 1197 | "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4", 1198 | "shasum": "" 1199 | }, 1200 | "require": { 1201 | "php": ">=5.4.0" 1202 | }, 1203 | "require-dev": { 1204 | "phpunit/phpunit": "^7.0 || ^6.5 || ^5.7 || ^4.8.36" 1205 | }, 1206 | "type": "library", 1207 | "autoload": { 1208 | "psr-4": { 1209 | "React\\Promise\\": "src/" 1210 | }, 1211 | "files": [ 1212 | "src/functions_include.php" 1213 | ] 1214 | }, 1215 | "notification-url": "https://packagist.org/downloads/", 1216 | "license": [ 1217 | "MIT" 1218 | ], 1219 | "authors": [ 1220 | { 1221 | "name": "Jan Sorgalla", 1222 | "email": "jsorgalla@gmail.com" 1223 | } 1224 | ], 1225 | "description": "A lightweight implementation of CommonJS Promises/A for PHP", 1226 | "keywords": [ 1227 | "promise", 1228 | "promises" 1229 | ], 1230 | "support": { 1231 | "issues": "https://github.com/reactphp/promise/issues", 1232 | "source": "https://github.com/reactphp/promise/tree/v2.8.0" 1233 | }, 1234 | "time": "2020-05-12T15:16:56+00:00" 1235 | }, 1236 | { 1237 | "name": "rmccue/requests", 1238 | "version": "v1.8.1", 1239 | "source": { 1240 | "type": "git", 1241 | "url": "https://github.com/WordPress/Requests.git", 1242 | "reference": "82e6936366eac3af4d836c18b9d8c31028fe4cd5" 1243 | }, 1244 | "dist": { 1245 | "type": "zip", 1246 | "url": "https://api.github.com/repos/WordPress/Requests/zipball/82e6936366eac3af4d836c18b9d8c31028fe4cd5", 1247 | "reference": "82e6936366eac3af4d836c18b9d8c31028fe4cd5", 1248 | "shasum": "" 1249 | }, 1250 | "require": { 1251 | "php": ">=5.2" 1252 | }, 1253 | "require-dev": { 1254 | "dealerdirect/phpcodesniffer-composer-installer": "^0.7", 1255 | "php-parallel-lint/php-console-highlighter": "^0.5.0", 1256 | "php-parallel-lint/php-parallel-lint": "^1.3", 1257 | "phpcompatibility/php-compatibility": "^9.0", 1258 | "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5", 1259 | "requests/test-server": "dev-master", 1260 | "squizlabs/php_codesniffer": "^3.5", 1261 | "wp-coding-standards/wpcs": "^2.0" 1262 | }, 1263 | "type": "library", 1264 | "autoload": { 1265 | "psr-0": { 1266 | "Requests": "library/" 1267 | } 1268 | }, 1269 | "notification-url": "https://packagist.org/downloads/", 1270 | "license": [ 1271 | "ISC" 1272 | ], 1273 | "authors": [ 1274 | { 1275 | "name": "Ryan McCue", 1276 | "homepage": "http://ryanmccue.info" 1277 | } 1278 | ], 1279 | "description": "A HTTP library written in PHP, for human beings.", 1280 | "homepage": "http://github.com/WordPress/Requests", 1281 | "keywords": [ 1282 | "curl", 1283 | "fsockopen", 1284 | "http", 1285 | "idna", 1286 | "ipv6", 1287 | "iri", 1288 | "sockets" 1289 | ], 1290 | "support": { 1291 | "issues": "https://github.com/WordPress/Requests/issues", 1292 | "source": "https://github.com/WordPress/Requests/tree/v1.8.1" 1293 | }, 1294 | "time": "2021-06-04T09:56:25+00:00" 1295 | }, 1296 | { 1297 | "name": "seld/jsonlint", 1298 | "version": "1.8.3", 1299 | "source": { 1300 | "type": "git", 1301 | "url": "https://github.com/Seldaek/jsonlint.git", 1302 | "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57" 1303 | }, 1304 | "dist": { 1305 | "type": "zip", 1306 | "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/9ad6ce79c342fbd44df10ea95511a1b24dee5b57", 1307 | "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57", 1308 | "shasum": "" 1309 | }, 1310 | "require": { 1311 | "php": "^5.3 || ^7.0 || ^8.0" 1312 | }, 1313 | "require-dev": { 1314 | "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0" 1315 | }, 1316 | "bin": [ 1317 | "bin/jsonlint" 1318 | ], 1319 | "type": "library", 1320 | "autoload": { 1321 | "psr-4": { 1322 | "Seld\\JsonLint\\": "src/Seld/JsonLint/" 1323 | } 1324 | }, 1325 | "notification-url": "https://packagist.org/downloads/", 1326 | "license": [ 1327 | "MIT" 1328 | ], 1329 | "authors": [ 1330 | { 1331 | "name": "Jordi Boggiano", 1332 | "email": "j.boggiano@seld.be", 1333 | "homepage": "http://seld.be" 1334 | } 1335 | ], 1336 | "description": "JSON Linter", 1337 | "keywords": [ 1338 | "json", 1339 | "linter", 1340 | "parser", 1341 | "validator" 1342 | ], 1343 | "support": { 1344 | "issues": "https://github.com/Seldaek/jsonlint/issues", 1345 | "source": "https://github.com/Seldaek/jsonlint/tree/1.8.3" 1346 | }, 1347 | "funding": [ 1348 | { 1349 | "url": "https://github.com/Seldaek", 1350 | "type": "github" 1351 | }, 1352 | { 1353 | "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint", 1354 | "type": "tidelift" 1355 | } 1356 | ], 1357 | "time": "2020-11-11T09:19:24+00:00" 1358 | }, 1359 | { 1360 | "name": "seld/phar-utils", 1361 | "version": "1.1.2", 1362 | "source": { 1363 | "type": "git", 1364 | "url": "https://github.com/Seldaek/phar-utils.git", 1365 | "reference": "749042a2315705d2dfbbc59234dd9ceb22bf3ff0" 1366 | }, 1367 | "dist": { 1368 | "type": "zip", 1369 | "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/749042a2315705d2dfbbc59234dd9ceb22bf3ff0", 1370 | "reference": "749042a2315705d2dfbbc59234dd9ceb22bf3ff0", 1371 | "shasum": "" 1372 | }, 1373 | "require": { 1374 | "php": ">=5.3" 1375 | }, 1376 | "type": "library", 1377 | "extra": { 1378 | "branch-alias": { 1379 | "dev-master": "1.x-dev" 1380 | } 1381 | }, 1382 | "autoload": { 1383 | "psr-4": { 1384 | "Seld\\PharUtils\\": "src/" 1385 | } 1386 | }, 1387 | "notification-url": "https://packagist.org/downloads/", 1388 | "license": [ 1389 | "MIT" 1390 | ], 1391 | "authors": [ 1392 | { 1393 | "name": "Jordi Boggiano", 1394 | "email": "j.boggiano@seld.be" 1395 | } 1396 | ], 1397 | "description": "PHAR file format utilities, for when PHP phars you up", 1398 | "keywords": [ 1399 | "phar" 1400 | ], 1401 | "support": { 1402 | "issues": "https://github.com/Seldaek/phar-utils/issues", 1403 | "source": "https://github.com/Seldaek/phar-utils/tree/1.1.2" 1404 | }, 1405 | "time": "2021-08-19T21:01:38+00:00" 1406 | }, 1407 | { 1408 | "name": "squizlabs/php_codesniffer", 1409 | "version": "3.6.0", 1410 | "source": { 1411 | "type": "git", 1412 | "url": "https://github.com/squizlabs/PHP_CodeSniffer.git", 1413 | "reference": "ffced0d2c8fa8e6cdc4d695a743271fab6c38625" 1414 | }, 1415 | "dist": { 1416 | "type": "zip", 1417 | "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/ffced0d2c8fa8e6cdc4d695a743271fab6c38625", 1418 | "reference": "ffced0d2c8fa8e6cdc4d695a743271fab6c38625", 1419 | "shasum": "" 1420 | }, 1421 | "require": { 1422 | "ext-simplexml": "*", 1423 | "ext-tokenizer": "*", 1424 | "ext-xmlwriter": "*", 1425 | "php": ">=5.4.0" 1426 | }, 1427 | "require-dev": { 1428 | "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0" 1429 | }, 1430 | "bin": [ 1431 | "bin/phpcs", 1432 | "bin/phpcbf" 1433 | ], 1434 | "type": "library", 1435 | "extra": { 1436 | "branch-alias": { 1437 | "dev-master": "3.x-dev" 1438 | } 1439 | }, 1440 | "notification-url": "https://packagist.org/downloads/", 1441 | "license": [ 1442 | "BSD-3-Clause" 1443 | ], 1444 | "authors": [ 1445 | { 1446 | "name": "Greg Sherwood", 1447 | "role": "lead" 1448 | } 1449 | ], 1450 | "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.", 1451 | "homepage": "https://github.com/squizlabs/PHP_CodeSniffer", 1452 | "keywords": [ 1453 | "phpcs", 1454 | "standards" 1455 | ], 1456 | "support": { 1457 | "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues", 1458 | "source": "https://github.com/squizlabs/PHP_CodeSniffer", 1459 | "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki" 1460 | }, 1461 | "time": "2021-04-09T00:54:41+00:00" 1462 | }, 1463 | { 1464 | "name": "symfony/console", 1465 | "version": "v5.3.7", 1466 | "source": { 1467 | "type": "git", 1468 | "url": "https://github.com/symfony/console.git", 1469 | "reference": "8b1008344647462ae6ec57559da166c2bfa5e16a" 1470 | }, 1471 | "dist": { 1472 | "type": "zip", 1473 | "url": "https://api.github.com/repos/symfony/console/zipball/8b1008344647462ae6ec57559da166c2bfa5e16a", 1474 | "reference": "8b1008344647462ae6ec57559da166c2bfa5e16a", 1475 | "shasum": "" 1476 | }, 1477 | "require": { 1478 | "php": ">=7.2.5", 1479 | "symfony/deprecation-contracts": "^2.1", 1480 | "symfony/polyfill-mbstring": "~1.0", 1481 | "symfony/polyfill-php73": "^1.8", 1482 | "symfony/polyfill-php80": "^1.16", 1483 | "symfony/service-contracts": "^1.1|^2", 1484 | "symfony/string": "^5.1" 1485 | }, 1486 | "conflict": { 1487 | "psr/log": ">=3", 1488 | "symfony/dependency-injection": "<4.4", 1489 | "symfony/dotenv": "<5.1", 1490 | "symfony/event-dispatcher": "<4.4", 1491 | "symfony/lock": "<4.4", 1492 | "symfony/process": "<4.4" 1493 | }, 1494 | "provide": { 1495 | "psr/log-implementation": "1.0|2.0" 1496 | }, 1497 | "require-dev": { 1498 | "psr/log": "^1|^2", 1499 | "symfony/config": "^4.4|^5.0", 1500 | "symfony/dependency-injection": "^4.4|^5.0", 1501 | "symfony/event-dispatcher": "^4.4|^5.0", 1502 | "symfony/lock": "^4.4|^5.0", 1503 | "symfony/process": "^4.4|^5.0", 1504 | "symfony/var-dumper": "^4.4|^5.0" 1505 | }, 1506 | "suggest": { 1507 | "psr/log": "For using the console logger", 1508 | "symfony/event-dispatcher": "", 1509 | "symfony/lock": "", 1510 | "symfony/process": "" 1511 | }, 1512 | "type": "library", 1513 | "autoload": { 1514 | "psr-4": { 1515 | "Symfony\\Component\\Console\\": "" 1516 | }, 1517 | "exclude-from-classmap": [ 1518 | "/Tests/" 1519 | ] 1520 | }, 1521 | "notification-url": "https://packagist.org/downloads/", 1522 | "license": [ 1523 | "MIT" 1524 | ], 1525 | "authors": [ 1526 | { 1527 | "name": "Fabien Potencier", 1528 | "email": "fabien@symfony.com" 1529 | }, 1530 | { 1531 | "name": "Symfony Community", 1532 | "homepage": "https://symfony.com/contributors" 1533 | } 1534 | ], 1535 | "description": "Eases the creation of beautiful and testable command line interfaces", 1536 | "homepage": "https://symfony.com", 1537 | "keywords": [ 1538 | "cli", 1539 | "command line", 1540 | "console", 1541 | "terminal" 1542 | ], 1543 | "support": { 1544 | "source": "https://github.com/symfony/console/tree/v5.3.7" 1545 | }, 1546 | "funding": [ 1547 | { 1548 | "url": "https://symfony.com/sponsor", 1549 | "type": "custom" 1550 | }, 1551 | { 1552 | "url": "https://github.com/fabpot", 1553 | "type": "github" 1554 | }, 1555 | { 1556 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 1557 | "type": "tidelift" 1558 | } 1559 | ], 1560 | "time": "2021-08-25T20:02:16+00:00" 1561 | }, 1562 | { 1563 | "name": "symfony/deprecation-contracts", 1564 | "version": "v2.4.0", 1565 | "source": { 1566 | "type": "git", 1567 | "url": "https://github.com/symfony/deprecation-contracts.git", 1568 | "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627" 1569 | }, 1570 | "dist": { 1571 | "type": "zip", 1572 | "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627", 1573 | "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627", 1574 | "shasum": "" 1575 | }, 1576 | "require": { 1577 | "php": ">=7.1" 1578 | }, 1579 | "type": "library", 1580 | "extra": { 1581 | "branch-alias": { 1582 | "dev-main": "2.4-dev" 1583 | }, 1584 | "thanks": { 1585 | "name": "symfony/contracts", 1586 | "url": "https://github.com/symfony/contracts" 1587 | } 1588 | }, 1589 | "autoload": { 1590 | "files": [ 1591 | "function.php" 1592 | ] 1593 | }, 1594 | "notification-url": "https://packagist.org/downloads/", 1595 | "license": [ 1596 | "MIT" 1597 | ], 1598 | "authors": [ 1599 | { 1600 | "name": "Nicolas Grekas", 1601 | "email": "p@tchwork.com" 1602 | }, 1603 | { 1604 | "name": "Symfony Community", 1605 | "homepage": "https://symfony.com/contributors" 1606 | } 1607 | ], 1608 | "description": "A generic function and convention to trigger deprecation notices", 1609 | "homepage": "https://symfony.com", 1610 | "support": { 1611 | "source": "https://github.com/symfony/deprecation-contracts/tree/v2.4.0" 1612 | }, 1613 | "funding": [ 1614 | { 1615 | "url": "https://symfony.com/sponsor", 1616 | "type": "custom" 1617 | }, 1618 | { 1619 | "url": "https://github.com/fabpot", 1620 | "type": "github" 1621 | }, 1622 | { 1623 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 1624 | "type": "tidelift" 1625 | } 1626 | ], 1627 | "time": "2021-03-23T23:28:01+00:00" 1628 | }, 1629 | { 1630 | "name": "symfony/filesystem", 1631 | "version": "v5.3.4", 1632 | "source": { 1633 | "type": "git", 1634 | "url": "https://github.com/symfony/filesystem.git", 1635 | "reference": "343f4fe324383ca46792cae728a3b6e2f708fb32" 1636 | }, 1637 | "dist": { 1638 | "type": "zip", 1639 | "url": "https://api.github.com/repos/symfony/filesystem/zipball/343f4fe324383ca46792cae728a3b6e2f708fb32", 1640 | "reference": "343f4fe324383ca46792cae728a3b6e2f708fb32", 1641 | "shasum": "" 1642 | }, 1643 | "require": { 1644 | "php": ">=7.2.5", 1645 | "symfony/polyfill-ctype": "~1.8", 1646 | "symfony/polyfill-php80": "^1.16" 1647 | }, 1648 | "type": "library", 1649 | "autoload": { 1650 | "psr-4": { 1651 | "Symfony\\Component\\Filesystem\\": "" 1652 | }, 1653 | "exclude-from-classmap": [ 1654 | "/Tests/" 1655 | ] 1656 | }, 1657 | "notification-url": "https://packagist.org/downloads/", 1658 | "license": [ 1659 | "MIT" 1660 | ], 1661 | "authors": [ 1662 | { 1663 | "name": "Fabien Potencier", 1664 | "email": "fabien@symfony.com" 1665 | }, 1666 | { 1667 | "name": "Symfony Community", 1668 | "homepage": "https://symfony.com/contributors" 1669 | } 1670 | ], 1671 | "description": "Provides basic utilities for the filesystem", 1672 | "homepage": "https://symfony.com", 1673 | "support": { 1674 | "source": "https://github.com/symfony/filesystem/tree/v5.3.4" 1675 | }, 1676 | "funding": [ 1677 | { 1678 | "url": "https://symfony.com/sponsor", 1679 | "type": "custom" 1680 | }, 1681 | { 1682 | "url": "https://github.com/fabpot", 1683 | "type": "github" 1684 | }, 1685 | { 1686 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 1687 | "type": "tidelift" 1688 | } 1689 | ], 1690 | "time": "2021-07-21T12:40:44+00:00" 1691 | }, 1692 | { 1693 | "name": "symfony/finder", 1694 | "version": "v5.3.7", 1695 | "source": { 1696 | "type": "git", 1697 | "url": "https://github.com/symfony/finder.git", 1698 | "reference": "a10000ada1e600d109a6c7632e9ac42e8bf2fb93" 1699 | }, 1700 | "dist": { 1701 | "type": "zip", 1702 | "url": "https://api.github.com/repos/symfony/finder/zipball/a10000ada1e600d109a6c7632e9ac42e8bf2fb93", 1703 | "reference": "a10000ada1e600d109a6c7632e9ac42e8bf2fb93", 1704 | "shasum": "" 1705 | }, 1706 | "require": { 1707 | "php": ">=7.2.5", 1708 | "symfony/polyfill-php80": "^1.16" 1709 | }, 1710 | "type": "library", 1711 | "autoload": { 1712 | "psr-4": { 1713 | "Symfony\\Component\\Finder\\": "" 1714 | }, 1715 | "exclude-from-classmap": [ 1716 | "/Tests/" 1717 | ] 1718 | }, 1719 | "notification-url": "https://packagist.org/downloads/", 1720 | "license": [ 1721 | "MIT" 1722 | ], 1723 | "authors": [ 1724 | { 1725 | "name": "Fabien Potencier", 1726 | "email": "fabien@symfony.com" 1727 | }, 1728 | { 1729 | "name": "Symfony Community", 1730 | "homepage": "https://symfony.com/contributors" 1731 | } 1732 | ], 1733 | "description": "Finds files and directories via an intuitive fluent interface", 1734 | "homepage": "https://symfony.com", 1735 | "support": { 1736 | "source": "https://github.com/symfony/finder/tree/v5.3.7" 1737 | }, 1738 | "funding": [ 1739 | { 1740 | "url": "https://symfony.com/sponsor", 1741 | "type": "custom" 1742 | }, 1743 | { 1744 | "url": "https://github.com/fabpot", 1745 | "type": "github" 1746 | }, 1747 | { 1748 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 1749 | "type": "tidelift" 1750 | } 1751 | ], 1752 | "time": "2021-08-04T21:20:46+00:00" 1753 | }, 1754 | { 1755 | "name": "symfony/polyfill-ctype", 1756 | "version": "v1.23.0", 1757 | "source": { 1758 | "type": "git", 1759 | "url": "https://github.com/symfony/polyfill-ctype.git", 1760 | "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce" 1761 | }, 1762 | "dist": { 1763 | "type": "zip", 1764 | "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce", 1765 | "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce", 1766 | "shasum": "" 1767 | }, 1768 | "require": { 1769 | "php": ">=7.1" 1770 | }, 1771 | "suggest": { 1772 | "ext-ctype": "For best performance" 1773 | }, 1774 | "type": "library", 1775 | "extra": { 1776 | "branch-alias": { 1777 | "dev-main": "1.23-dev" 1778 | }, 1779 | "thanks": { 1780 | "name": "symfony/polyfill", 1781 | "url": "https://github.com/symfony/polyfill" 1782 | } 1783 | }, 1784 | "autoload": { 1785 | "psr-4": { 1786 | "Symfony\\Polyfill\\Ctype\\": "" 1787 | }, 1788 | "files": [ 1789 | "bootstrap.php" 1790 | ] 1791 | }, 1792 | "notification-url": "https://packagist.org/downloads/", 1793 | "license": [ 1794 | "MIT" 1795 | ], 1796 | "authors": [ 1797 | { 1798 | "name": "Gert de Pagter", 1799 | "email": "BackEndTea@gmail.com" 1800 | }, 1801 | { 1802 | "name": "Symfony Community", 1803 | "homepage": "https://symfony.com/contributors" 1804 | } 1805 | ], 1806 | "description": "Symfony polyfill for ctype functions", 1807 | "homepage": "https://symfony.com", 1808 | "keywords": [ 1809 | "compatibility", 1810 | "ctype", 1811 | "polyfill", 1812 | "portable" 1813 | ], 1814 | "support": { 1815 | "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0" 1816 | }, 1817 | "funding": [ 1818 | { 1819 | "url": "https://symfony.com/sponsor", 1820 | "type": "custom" 1821 | }, 1822 | { 1823 | "url": "https://github.com/fabpot", 1824 | "type": "github" 1825 | }, 1826 | { 1827 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 1828 | "type": "tidelift" 1829 | } 1830 | ], 1831 | "time": "2021-02-19T12:13:01+00:00" 1832 | }, 1833 | { 1834 | "name": "symfony/polyfill-intl-grapheme", 1835 | "version": "v1.23.1", 1836 | "source": { 1837 | "type": "git", 1838 | "url": "https://github.com/symfony/polyfill-intl-grapheme.git", 1839 | "reference": "16880ba9c5ebe3642d1995ab866db29270b36535" 1840 | }, 1841 | "dist": { 1842 | "type": "zip", 1843 | "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/16880ba9c5ebe3642d1995ab866db29270b36535", 1844 | "reference": "16880ba9c5ebe3642d1995ab866db29270b36535", 1845 | "shasum": "" 1846 | }, 1847 | "require": { 1848 | "php": ">=7.1" 1849 | }, 1850 | "suggest": { 1851 | "ext-intl": "For best performance" 1852 | }, 1853 | "type": "library", 1854 | "extra": { 1855 | "branch-alias": { 1856 | "dev-main": "1.23-dev" 1857 | }, 1858 | "thanks": { 1859 | "name": "symfony/polyfill", 1860 | "url": "https://github.com/symfony/polyfill" 1861 | } 1862 | }, 1863 | "autoload": { 1864 | "psr-4": { 1865 | "Symfony\\Polyfill\\Intl\\Grapheme\\": "" 1866 | }, 1867 | "files": [ 1868 | "bootstrap.php" 1869 | ] 1870 | }, 1871 | "notification-url": "https://packagist.org/downloads/", 1872 | "license": [ 1873 | "MIT" 1874 | ], 1875 | "authors": [ 1876 | { 1877 | "name": "Nicolas Grekas", 1878 | "email": "p@tchwork.com" 1879 | }, 1880 | { 1881 | "name": "Symfony Community", 1882 | "homepage": "https://symfony.com/contributors" 1883 | } 1884 | ], 1885 | "description": "Symfony polyfill for intl's grapheme_* functions", 1886 | "homepage": "https://symfony.com", 1887 | "keywords": [ 1888 | "compatibility", 1889 | "grapheme", 1890 | "intl", 1891 | "polyfill", 1892 | "portable", 1893 | "shim" 1894 | ], 1895 | "support": { 1896 | "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.23.1" 1897 | }, 1898 | "funding": [ 1899 | { 1900 | "url": "https://symfony.com/sponsor", 1901 | "type": "custom" 1902 | }, 1903 | { 1904 | "url": "https://github.com/fabpot", 1905 | "type": "github" 1906 | }, 1907 | { 1908 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 1909 | "type": "tidelift" 1910 | } 1911 | ], 1912 | "time": "2021-05-27T12:26:48+00:00" 1913 | }, 1914 | { 1915 | "name": "symfony/polyfill-intl-normalizer", 1916 | "version": "v1.23.0", 1917 | "source": { 1918 | "type": "git", 1919 | "url": "https://github.com/symfony/polyfill-intl-normalizer.git", 1920 | "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8" 1921 | }, 1922 | "dist": { 1923 | "type": "zip", 1924 | "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8", 1925 | "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8", 1926 | "shasum": "" 1927 | }, 1928 | "require": { 1929 | "php": ">=7.1" 1930 | }, 1931 | "suggest": { 1932 | "ext-intl": "For best performance" 1933 | }, 1934 | "type": "library", 1935 | "extra": { 1936 | "branch-alias": { 1937 | "dev-main": "1.23-dev" 1938 | }, 1939 | "thanks": { 1940 | "name": "symfony/polyfill", 1941 | "url": "https://github.com/symfony/polyfill" 1942 | } 1943 | }, 1944 | "autoload": { 1945 | "psr-4": { 1946 | "Symfony\\Polyfill\\Intl\\Normalizer\\": "" 1947 | }, 1948 | "files": [ 1949 | "bootstrap.php" 1950 | ], 1951 | "classmap": [ 1952 | "Resources/stubs" 1953 | ] 1954 | }, 1955 | "notification-url": "https://packagist.org/downloads/", 1956 | "license": [ 1957 | "MIT" 1958 | ], 1959 | "authors": [ 1960 | { 1961 | "name": "Nicolas Grekas", 1962 | "email": "p@tchwork.com" 1963 | }, 1964 | { 1965 | "name": "Symfony Community", 1966 | "homepage": "https://symfony.com/contributors" 1967 | } 1968 | ], 1969 | "description": "Symfony polyfill for intl's Normalizer class and related functions", 1970 | "homepage": "https://symfony.com", 1971 | "keywords": [ 1972 | "compatibility", 1973 | "intl", 1974 | "normalizer", 1975 | "polyfill", 1976 | "portable", 1977 | "shim" 1978 | ], 1979 | "support": { 1980 | "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.23.0" 1981 | }, 1982 | "funding": [ 1983 | { 1984 | "url": "https://symfony.com/sponsor", 1985 | "type": "custom" 1986 | }, 1987 | { 1988 | "url": "https://github.com/fabpot", 1989 | "type": "github" 1990 | }, 1991 | { 1992 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 1993 | "type": "tidelift" 1994 | } 1995 | ], 1996 | "time": "2021-02-19T12:13:01+00:00" 1997 | }, 1998 | { 1999 | "name": "symfony/polyfill-mbstring", 2000 | "version": "v1.23.1", 2001 | "source": { 2002 | "type": "git", 2003 | "url": "https://github.com/symfony/polyfill-mbstring.git", 2004 | "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6" 2005 | }, 2006 | "dist": { 2007 | "type": "zip", 2008 | "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6", 2009 | "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6", 2010 | "shasum": "" 2011 | }, 2012 | "require": { 2013 | "php": ">=7.1" 2014 | }, 2015 | "suggest": { 2016 | "ext-mbstring": "For best performance" 2017 | }, 2018 | "type": "library", 2019 | "extra": { 2020 | "branch-alias": { 2021 | "dev-main": "1.23-dev" 2022 | }, 2023 | "thanks": { 2024 | "name": "symfony/polyfill", 2025 | "url": "https://github.com/symfony/polyfill" 2026 | } 2027 | }, 2028 | "autoload": { 2029 | "psr-4": { 2030 | "Symfony\\Polyfill\\Mbstring\\": "" 2031 | }, 2032 | "files": [ 2033 | "bootstrap.php" 2034 | ] 2035 | }, 2036 | "notification-url": "https://packagist.org/downloads/", 2037 | "license": [ 2038 | "MIT" 2039 | ], 2040 | "authors": [ 2041 | { 2042 | "name": "Nicolas Grekas", 2043 | "email": "p@tchwork.com" 2044 | }, 2045 | { 2046 | "name": "Symfony Community", 2047 | "homepage": "https://symfony.com/contributors" 2048 | } 2049 | ], 2050 | "description": "Symfony polyfill for the Mbstring extension", 2051 | "homepage": "https://symfony.com", 2052 | "keywords": [ 2053 | "compatibility", 2054 | "mbstring", 2055 | "polyfill", 2056 | "portable", 2057 | "shim" 2058 | ], 2059 | "support": { 2060 | "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.1" 2061 | }, 2062 | "funding": [ 2063 | { 2064 | "url": "https://symfony.com/sponsor", 2065 | "type": "custom" 2066 | }, 2067 | { 2068 | "url": "https://github.com/fabpot", 2069 | "type": "github" 2070 | }, 2071 | { 2072 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 2073 | "type": "tidelift" 2074 | } 2075 | ], 2076 | "time": "2021-05-27T12:26:48+00:00" 2077 | }, 2078 | { 2079 | "name": "symfony/polyfill-php73", 2080 | "version": "v1.23.0", 2081 | "source": { 2082 | "type": "git", 2083 | "url": "https://github.com/symfony/polyfill-php73.git", 2084 | "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010" 2085 | }, 2086 | "dist": { 2087 | "type": "zip", 2088 | "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010", 2089 | "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010", 2090 | "shasum": "" 2091 | }, 2092 | "require": { 2093 | "php": ">=7.1" 2094 | }, 2095 | "type": "library", 2096 | "extra": { 2097 | "branch-alias": { 2098 | "dev-main": "1.23-dev" 2099 | }, 2100 | "thanks": { 2101 | "name": "symfony/polyfill", 2102 | "url": "https://github.com/symfony/polyfill" 2103 | } 2104 | }, 2105 | "autoload": { 2106 | "psr-4": { 2107 | "Symfony\\Polyfill\\Php73\\": "" 2108 | }, 2109 | "files": [ 2110 | "bootstrap.php" 2111 | ], 2112 | "classmap": [ 2113 | "Resources/stubs" 2114 | ] 2115 | }, 2116 | "notification-url": "https://packagist.org/downloads/", 2117 | "license": [ 2118 | "MIT" 2119 | ], 2120 | "authors": [ 2121 | { 2122 | "name": "Nicolas Grekas", 2123 | "email": "p@tchwork.com" 2124 | }, 2125 | { 2126 | "name": "Symfony Community", 2127 | "homepage": "https://symfony.com/contributors" 2128 | } 2129 | ], 2130 | "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions", 2131 | "homepage": "https://symfony.com", 2132 | "keywords": [ 2133 | "compatibility", 2134 | "polyfill", 2135 | "portable", 2136 | "shim" 2137 | ], 2138 | "support": { 2139 | "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0" 2140 | }, 2141 | "funding": [ 2142 | { 2143 | "url": "https://symfony.com/sponsor", 2144 | "type": "custom" 2145 | }, 2146 | { 2147 | "url": "https://github.com/fabpot", 2148 | "type": "github" 2149 | }, 2150 | { 2151 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 2152 | "type": "tidelift" 2153 | } 2154 | ], 2155 | "time": "2021-02-19T12:13:01+00:00" 2156 | }, 2157 | { 2158 | "name": "symfony/polyfill-php80", 2159 | "version": "v1.23.1", 2160 | "source": { 2161 | "type": "git", 2162 | "url": "https://github.com/symfony/polyfill-php80.git", 2163 | "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be" 2164 | }, 2165 | "dist": { 2166 | "type": "zip", 2167 | "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be", 2168 | "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be", 2169 | "shasum": "" 2170 | }, 2171 | "require": { 2172 | "php": ">=7.1" 2173 | }, 2174 | "type": "library", 2175 | "extra": { 2176 | "branch-alias": { 2177 | "dev-main": "1.23-dev" 2178 | }, 2179 | "thanks": { 2180 | "name": "symfony/polyfill", 2181 | "url": "https://github.com/symfony/polyfill" 2182 | } 2183 | }, 2184 | "autoload": { 2185 | "psr-4": { 2186 | "Symfony\\Polyfill\\Php80\\": "" 2187 | }, 2188 | "files": [ 2189 | "bootstrap.php" 2190 | ], 2191 | "classmap": [ 2192 | "Resources/stubs" 2193 | ] 2194 | }, 2195 | "notification-url": "https://packagist.org/downloads/", 2196 | "license": [ 2197 | "MIT" 2198 | ], 2199 | "authors": [ 2200 | { 2201 | "name": "Ion Bazan", 2202 | "email": "ion.bazan@gmail.com" 2203 | }, 2204 | { 2205 | "name": "Nicolas Grekas", 2206 | "email": "p@tchwork.com" 2207 | }, 2208 | { 2209 | "name": "Symfony Community", 2210 | "homepage": "https://symfony.com/contributors" 2211 | } 2212 | ], 2213 | "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", 2214 | "homepage": "https://symfony.com", 2215 | "keywords": [ 2216 | "compatibility", 2217 | "polyfill", 2218 | "portable", 2219 | "shim" 2220 | ], 2221 | "support": { 2222 | "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.1" 2223 | }, 2224 | "funding": [ 2225 | { 2226 | "url": "https://symfony.com/sponsor", 2227 | "type": "custom" 2228 | }, 2229 | { 2230 | "url": "https://github.com/fabpot", 2231 | "type": "github" 2232 | }, 2233 | { 2234 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 2235 | "type": "tidelift" 2236 | } 2237 | ], 2238 | "time": "2021-07-28T13:41:28+00:00" 2239 | }, 2240 | { 2241 | "name": "symfony/process", 2242 | "version": "v5.3.7", 2243 | "source": { 2244 | "type": "git", 2245 | "url": "https://github.com/symfony/process.git", 2246 | "reference": "38f26c7d6ed535217ea393e05634cb0b244a1967" 2247 | }, 2248 | "dist": { 2249 | "type": "zip", 2250 | "url": "https://api.github.com/repos/symfony/process/zipball/38f26c7d6ed535217ea393e05634cb0b244a1967", 2251 | "reference": "38f26c7d6ed535217ea393e05634cb0b244a1967", 2252 | "shasum": "" 2253 | }, 2254 | "require": { 2255 | "php": ">=7.2.5", 2256 | "symfony/polyfill-php80": "^1.16" 2257 | }, 2258 | "type": "library", 2259 | "autoload": { 2260 | "psr-4": { 2261 | "Symfony\\Component\\Process\\": "" 2262 | }, 2263 | "exclude-from-classmap": [ 2264 | "/Tests/" 2265 | ] 2266 | }, 2267 | "notification-url": "https://packagist.org/downloads/", 2268 | "license": [ 2269 | "MIT" 2270 | ], 2271 | "authors": [ 2272 | { 2273 | "name": "Fabien Potencier", 2274 | "email": "fabien@symfony.com" 2275 | }, 2276 | { 2277 | "name": "Symfony Community", 2278 | "homepage": "https://symfony.com/contributors" 2279 | } 2280 | ], 2281 | "description": "Executes commands in sub-processes", 2282 | "homepage": "https://symfony.com", 2283 | "support": { 2284 | "source": "https://github.com/symfony/process/tree/v5.3.7" 2285 | }, 2286 | "funding": [ 2287 | { 2288 | "url": "https://symfony.com/sponsor", 2289 | "type": "custom" 2290 | }, 2291 | { 2292 | "url": "https://github.com/fabpot", 2293 | "type": "github" 2294 | }, 2295 | { 2296 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 2297 | "type": "tidelift" 2298 | } 2299 | ], 2300 | "time": "2021-08-04T21:20:46+00:00" 2301 | }, 2302 | { 2303 | "name": "symfony/service-contracts", 2304 | "version": "v2.4.0", 2305 | "source": { 2306 | "type": "git", 2307 | "url": "https://github.com/symfony/service-contracts.git", 2308 | "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb" 2309 | }, 2310 | "dist": { 2311 | "type": "zip", 2312 | "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb", 2313 | "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb", 2314 | "shasum": "" 2315 | }, 2316 | "require": { 2317 | "php": ">=7.2.5", 2318 | "psr/container": "^1.1" 2319 | }, 2320 | "suggest": { 2321 | "symfony/service-implementation": "" 2322 | }, 2323 | "type": "library", 2324 | "extra": { 2325 | "branch-alias": { 2326 | "dev-main": "2.4-dev" 2327 | }, 2328 | "thanks": { 2329 | "name": "symfony/contracts", 2330 | "url": "https://github.com/symfony/contracts" 2331 | } 2332 | }, 2333 | "autoload": { 2334 | "psr-4": { 2335 | "Symfony\\Contracts\\Service\\": "" 2336 | } 2337 | }, 2338 | "notification-url": "https://packagist.org/downloads/", 2339 | "license": [ 2340 | "MIT" 2341 | ], 2342 | "authors": [ 2343 | { 2344 | "name": "Nicolas Grekas", 2345 | "email": "p@tchwork.com" 2346 | }, 2347 | { 2348 | "name": "Symfony Community", 2349 | "homepage": "https://symfony.com/contributors" 2350 | } 2351 | ], 2352 | "description": "Generic abstractions related to writing services", 2353 | "homepage": "https://symfony.com", 2354 | "keywords": [ 2355 | "abstractions", 2356 | "contracts", 2357 | "decoupling", 2358 | "interfaces", 2359 | "interoperability", 2360 | "standards" 2361 | ], 2362 | "support": { 2363 | "source": "https://github.com/symfony/service-contracts/tree/v2.4.0" 2364 | }, 2365 | "funding": [ 2366 | { 2367 | "url": "https://symfony.com/sponsor", 2368 | "type": "custom" 2369 | }, 2370 | { 2371 | "url": "https://github.com/fabpot", 2372 | "type": "github" 2373 | }, 2374 | { 2375 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 2376 | "type": "tidelift" 2377 | } 2378 | ], 2379 | "time": "2021-04-01T10:43:52+00:00" 2380 | }, 2381 | { 2382 | "name": "symfony/string", 2383 | "version": "v5.3.7", 2384 | "source": { 2385 | "type": "git", 2386 | "url": "https://github.com/symfony/string.git", 2387 | "reference": "8d224396e28d30f81969f083a58763b8b9ceb0a5" 2388 | }, 2389 | "dist": { 2390 | "type": "zip", 2391 | "url": "https://api.github.com/repos/symfony/string/zipball/8d224396e28d30f81969f083a58763b8b9ceb0a5", 2392 | "reference": "8d224396e28d30f81969f083a58763b8b9ceb0a5", 2393 | "shasum": "" 2394 | }, 2395 | "require": { 2396 | "php": ">=7.2.5", 2397 | "symfony/polyfill-ctype": "~1.8", 2398 | "symfony/polyfill-intl-grapheme": "~1.0", 2399 | "symfony/polyfill-intl-normalizer": "~1.0", 2400 | "symfony/polyfill-mbstring": "~1.0", 2401 | "symfony/polyfill-php80": "~1.15" 2402 | }, 2403 | "require-dev": { 2404 | "symfony/error-handler": "^4.4|^5.0", 2405 | "symfony/http-client": "^4.4|^5.0", 2406 | "symfony/translation-contracts": "^1.1|^2", 2407 | "symfony/var-exporter": "^4.4|^5.0" 2408 | }, 2409 | "type": "library", 2410 | "autoload": { 2411 | "psr-4": { 2412 | "Symfony\\Component\\String\\": "" 2413 | }, 2414 | "files": [ 2415 | "Resources/functions.php" 2416 | ], 2417 | "exclude-from-classmap": [ 2418 | "/Tests/" 2419 | ] 2420 | }, 2421 | "notification-url": "https://packagist.org/downloads/", 2422 | "license": [ 2423 | "MIT" 2424 | ], 2425 | "authors": [ 2426 | { 2427 | "name": "Nicolas Grekas", 2428 | "email": "p@tchwork.com" 2429 | }, 2430 | { 2431 | "name": "Symfony Community", 2432 | "homepage": "https://symfony.com/contributors" 2433 | } 2434 | ], 2435 | "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", 2436 | "homepage": "https://symfony.com", 2437 | "keywords": [ 2438 | "grapheme", 2439 | "i18n", 2440 | "string", 2441 | "unicode", 2442 | "utf-8", 2443 | "utf8" 2444 | ], 2445 | "support": { 2446 | "source": "https://github.com/symfony/string/tree/v5.3.7" 2447 | }, 2448 | "funding": [ 2449 | { 2450 | "url": "https://symfony.com/sponsor", 2451 | "type": "custom" 2452 | }, 2453 | { 2454 | "url": "https://github.com/fabpot", 2455 | "type": "github" 2456 | }, 2457 | { 2458 | "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", 2459 | "type": "tidelift" 2460 | } 2461 | ], 2462 | "time": "2021-08-26T08:00:08+00:00" 2463 | }, 2464 | { 2465 | "name": "wp-cli/cache-command", 2466 | "version": "v2.0.7", 2467 | "source": { 2468 | "type": "git", 2469 | "url": "https://github.com/wp-cli/cache-command.git", 2470 | "reference": "bf5d3d335de5f9d93180682f107c238a83c4b02c" 2471 | }, 2472 | "dist": { 2473 | "type": "zip", 2474 | "url": "https://api.github.com/repos/wp-cli/cache-command/zipball/bf5d3d335de5f9d93180682f107c238a83c4b02c", 2475 | "reference": "bf5d3d335de5f9d93180682f107c238a83c4b02c", 2476 | "shasum": "" 2477 | }, 2478 | "require": { 2479 | "wp-cli/wp-cli": "^2.5" 2480 | }, 2481 | "require-dev": { 2482 | "wp-cli/entity-command": "^1.3 || ^2", 2483 | "wp-cli/wp-cli-tests": "^3.0.11" 2484 | }, 2485 | "type": "wp-cli-package", 2486 | "extra": { 2487 | "branch-alias": { 2488 | "dev-master": "2.x-dev" 2489 | }, 2490 | "bundled": true, 2491 | "commands": [ 2492 | "cache", 2493 | "cache add", 2494 | "cache decr", 2495 | "cache delete", 2496 | "cache flush", 2497 | "cache get", 2498 | "cache incr", 2499 | "cache replace", 2500 | "cache set", 2501 | "cache type", 2502 | "transient", 2503 | "transient delete", 2504 | "transient get", 2505 | "transient set", 2506 | "transient type", 2507 | "transient list" 2508 | ] 2509 | }, 2510 | "autoload": { 2511 | "psr-4": { 2512 | "": "src/" 2513 | }, 2514 | "files": [ 2515 | "cache-command.php" 2516 | ] 2517 | }, 2518 | "notification-url": "https://packagist.org/downloads/", 2519 | "license": [ 2520 | "MIT" 2521 | ], 2522 | "authors": [ 2523 | { 2524 | "name": "Daniel Bachhuber", 2525 | "email": "daniel@runcommand.io", 2526 | "homepage": "https://runcommand.io" 2527 | } 2528 | ], 2529 | "description": "Manages object and transient caches.", 2530 | "homepage": "https://github.com/wp-cli/cache-command", 2531 | "support": { 2532 | "issues": "https://github.com/wp-cli/cache-command/issues", 2533 | "source": "https://github.com/wp-cli/cache-command/tree/v2.0.7" 2534 | }, 2535 | "time": "2021-05-12T06:04:03+00:00" 2536 | }, 2537 | { 2538 | "name": "wp-cli/checksum-command", 2539 | "version": "v2.1.0", 2540 | "source": { 2541 | "type": "git", 2542 | "url": "https://github.com/wp-cli/checksum-command.git", 2543 | "reference": "0f58af914a4af3018ce83449869300d65df9f613" 2544 | }, 2545 | "dist": { 2546 | "type": "zip", 2547 | "url": "https://api.github.com/repos/wp-cli/checksum-command/zipball/0f58af914a4af3018ce83449869300d65df9f613", 2548 | "reference": "0f58af914a4af3018ce83449869300d65df9f613", 2549 | "shasum": "" 2550 | }, 2551 | "require": { 2552 | "wp-cli/wp-cli": "^2.5" 2553 | }, 2554 | "require-dev": { 2555 | "wp-cli/extension-command": "^1.2 || ^2", 2556 | "wp-cli/wp-cli-tests": "^3.0.11" 2557 | }, 2558 | "type": "wp-cli-package", 2559 | "extra": { 2560 | "branch-alias": { 2561 | "dev-master": "2.x-dev" 2562 | }, 2563 | "bundled": true, 2564 | "commands": [ 2565 | "core verify-checksums", 2566 | "plugin verify-checksums" 2567 | ] 2568 | }, 2569 | "autoload": { 2570 | "psr-4": { 2571 | "": "src/" 2572 | }, 2573 | "files": [ 2574 | "checksum-command.php" 2575 | ] 2576 | }, 2577 | "notification-url": "https://packagist.org/downloads/", 2578 | "license": [ 2579 | "MIT" 2580 | ], 2581 | "authors": [ 2582 | { 2583 | "name": "Daniel Bachhuber", 2584 | "email": "daniel@runcommand.io", 2585 | "homepage": "https://runcommand.io" 2586 | } 2587 | ], 2588 | "description": "Verifies file integrity by comparing to published checksums.", 2589 | "homepage": "https://github.com/wp-cli/checksum-command", 2590 | "support": { 2591 | "issues": "https://github.com/wp-cli/checksum-command/issues", 2592 | "source": "https://github.com/wp-cli/checksum-command/tree/v2.1.0" 2593 | }, 2594 | "time": "2021-05-12T06:06:01+00:00" 2595 | }, 2596 | { 2597 | "name": "wp-cli/config-command", 2598 | "version": "v2.1.0", 2599 | "source": { 2600 | "type": "git", 2601 | "url": "https://github.com/wp-cli/config-command.git", 2602 | "reference": "46b096eae2c116bed30c8d649f6e2a1d4db035c1" 2603 | }, 2604 | "dist": { 2605 | "type": "zip", 2606 | "url": "https://api.github.com/repos/wp-cli/config-command/zipball/46b096eae2c116bed30c8d649f6e2a1d4db035c1", 2607 | "reference": "46b096eae2c116bed30c8d649f6e2a1d4db035c1", 2608 | "shasum": "" 2609 | }, 2610 | "require": { 2611 | "wp-cli/wp-cli": "^2.5", 2612 | "wp-cli/wp-config-transformer": "^1.2.1" 2613 | }, 2614 | "require-dev": { 2615 | "wp-cli/db-command": "^1.3 || ^2", 2616 | "wp-cli/wp-cli-tests": "^3.0.11" 2617 | }, 2618 | "type": "wp-cli-package", 2619 | "extra": { 2620 | "branch-alias": { 2621 | "dev-master": "2.x-dev" 2622 | }, 2623 | "bundled": true, 2624 | "commands": [ 2625 | "config", 2626 | "config edit", 2627 | "config delete", 2628 | "config create", 2629 | "config get", 2630 | "config has", 2631 | "config list", 2632 | "config path", 2633 | "config set", 2634 | "config shuffle-salts" 2635 | ] 2636 | }, 2637 | "autoload": { 2638 | "psr-4": { 2639 | "": "src/" 2640 | }, 2641 | "files": [ 2642 | "config-command.php" 2643 | ] 2644 | }, 2645 | "notification-url": "https://packagist.org/downloads/", 2646 | "license": [ 2647 | "MIT" 2648 | ], 2649 | "authors": [ 2650 | { 2651 | "name": "Daniel Bachhuber", 2652 | "email": "daniel@runcommand.io", 2653 | "homepage": "https://runcommand.io" 2654 | }, 2655 | { 2656 | "name": "Alain Schlesser", 2657 | "email": "alain.schlesser@gmail.com", 2658 | "homepage": "https://www.alainschlesser.com" 2659 | } 2660 | ], 2661 | "description": "Generates and reads the wp-config.php file.", 2662 | "homepage": "https://github.com/wp-cli/config-command", 2663 | "support": { 2664 | "issues": "https://github.com/wp-cli/config-command/issues", 2665 | "source": "https://github.com/wp-cli/config-command/tree/v2.1.0" 2666 | }, 2667 | "time": "2021-05-12T06:05:07+00:00" 2668 | }, 2669 | { 2670 | "name": "wp-cli/core-command", 2671 | "version": "v2.1.0", 2672 | "source": { 2673 | "type": "git", 2674 | "url": "https://github.com/wp-cli/core-command.git", 2675 | "reference": "b7f44f03a3a3514798cda21b61a418f08aece324" 2676 | }, 2677 | "dist": { 2678 | "type": "zip", 2679 | "url": "https://api.github.com/repos/wp-cli/core-command/zipball/b7f44f03a3a3514798cda21b61a418f08aece324", 2680 | "reference": "b7f44f03a3a3514798cda21b61a418f08aece324", 2681 | "shasum": "" 2682 | }, 2683 | "require": { 2684 | "composer/semver": "^1.4 || ^2 || ^3", 2685 | "wp-cli/wp-cli": "^2.5" 2686 | }, 2687 | "require-dev": { 2688 | "wp-cli/checksum-command": "^1 || ^2", 2689 | "wp-cli/db-command": "^1.3 || ^2", 2690 | "wp-cli/entity-command": "^1.3 || ^2", 2691 | "wp-cli/extension-command": "^1.2 || ^2", 2692 | "wp-cli/wp-cli-tests": "^3.0.11" 2693 | }, 2694 | "type": "wp-cli-package", 2695 | "extra": { 2696 | "branch-alias": { 2697 | "dev-master": "2.x-dev" 2698 | }, 2699 | "bundled": true, 2700 | "commands": [ 2701 | "core", 2702 | "core check-update", 2703 | "core download", 2704 | "core install", 2705 | "core is-installed", 2706 | "core multisite-convert", 2707 | "core multisite-install", 2708 | "core update", 2709 | "core update-db", 2710 | "core version" 2711 | ] 2712 | }, 2713 | "autoload": { 2714 | "psr-4": { 2715 | "": "src/" 2716 | }, 2717 | "files": [ 2718 | "core-command.php" 2719 | ] 2720 | }, 2721 | "notification-url": "https://packagist.org/downloads/", 2722 | "license": [ 2723 | "MIT" 2724 | ], 2725 | "authors": [ 2726 | { 2727 | "name": "Daniel Bachhuber", 2728 | "email": "daniel@runcommand.io", 2729 | "homepage": "https://runcommand.io" 2730 | } 2731 | ], 2732 | "description": "Downloads, installs, updates, and manages a WordPress installation.", 2733 | "homepage": "https://github.com/wp-cli/core-command", 2734 | "support": { 2735 | "issues": "https://github.com/wp-cli/core-command/issues", 2736 | "source": "https://github.com/wp-cli/core-command/tree/v2.1.0" 2737 | }, 2738 | "time": "2021-05-12T06:05:27+00:00" 2739 | }, 2740 | { 2741 | "name": "wp-cli/cron-command", 2742 | "version": "v2.0.8", 2743 | "source": { 2744 | "type": "git", 2745 | "url": "https://github.com/wp-cli/cron-command.git", 2746 | "reference": "f0d493ff4d4f20ee6d6fd5495da1bc1760f9da15" 2747 | }, 2748 | "dist": { 2749 | "type": "zip", 2750 | "url": "https://api.github.com/repos/wp-cli/cron-command/zipball/f0d493ff4d4f20ee6d6fd5495da1bc1760f9da15", 2751 | "reference": "f0d493ff4d4f20ee6d6fd5495da1bc1760f9da15", 2752 | "shasum": "" 2753 | }, 2754 | "require": { 2755 | "wp-cli/wp-cli": "^2.5" 2756 | }, 2757 | "require-dev": { 2758 | "wp-cli/entity-command": "^1.3 || ^2", 2759 | "wp-cli/wp-cli-tests": "^3.0.11" 2760 | }, 2761 | "type": "wp-cli-package", 2762 | "extra": { 2763 | "branch-alias": { 2764 | "dev-master": "2.x-dev" 2765 | }, 2766 | "bundled": true, 2767 | "commands": [ 2768 | "cron", 2769 | "cron test", 2770 | "cron event", 2771 | "cron event delete", 2772 | "cron event list", 2773 | "cron event run", 2774 | "cron event schedule", 2775 | "cron schedule", 2776 | "cron schedule list", 2777 | "cron event unschedule" 2778 | ] 2779 | }, 2780 | "autoload": { 2781 | "psr-4": { 2782 | "": "src/" 2783 | }, 2784 | "files": [ 2785 | "cron-command.php" 2786 | ] 2787 | }, 2788 | "notification-url": "https://packagist.org/downloads/", 2789 | "license": [ 2790 | "MIT" 2791 | ], 2792 | "authors": [ 2793 | { 2794 | "name": "Daniel Bachhuber", 2795 | "email": "daniel@runcommand.io", 2796 | "homepage": "https://runcommand.io" 2797 | } 2798 | ], 2799 | "description": "Tests, runs, and deletes WP-Cron events; manages WP-Cron schedules.", 2800 | "homepage": "https://github.com/wp-cli/cron-command", 2801 | "support": { 2802 | "issues": "https://github.com/wp-cli/cron-command/issues", 2803 | "source": "https://github.com/wp-cli/cron-command/tree/v2.0.8" 2804 | }, 2805 | "time": "2021-05-12T06:06:58+00:00" 2806 | }, 2807 | { 2808 | "name": "wp-cli/db-command", 2809 | "version": "v2.0.16", 2810 | "source": { 2811 | "type": "git", 2812 | "url": "https://github.com/wp-cli/db-command.git", 2813 | "reference": "17e3ce14d31410f8df73f69552a6308a733277bc" 2814 | }, 2815 | "dist": { 2816 | "type": "zip", 2817 | "url": "https://api.github.com/repos/wp-cli/db-command/zipball/17e3ce14d31410f8df73f69552a6308a733277bc", 2818 | "reference": "17e3ce14d31410f8df73f69552a6308a733277bc", 2819 | "shasum": "" 2820 | }, 2821 | "require": { 2822 | "wp-cli/wp-cli": "^2.5" 2823 | }, 2824 | "require-dev": { 2825 | "wp-cli/entity-command": "^1.3 || ^2", 2826 | "wp-cli/wp-cli-tests": "^3.0.17" 2827 | }, 2828 | "type": "wp-cli-package", 2829 | "extra": { 2830 | "branch-alias": { 2831 | "dev-master": "2.x-dev" 2832 | }, 2833 | "bundled": true, 2834 | "commands": [ 2835 | "db", 2836 | "db clean", 2837 | "db create", 2838 | "db drop", 2839 | "db reset", 2840 | "db check", 2841 | "db optimize", 2842 | "db prefix", 2843 | "db repair", 2844 | "db cli", 2845 | "db query", 2846 | "db export", 2847 | "db import", 2848 | "db search", 2849 | "db tables", 2850 | "db size", 2851 | "db columns" 2852 | ] 2853 | }, 2854 | "autoload": { 2855 | "psr-4": { 2856 | "": "src/" 2857 | }, 2858 | "files": [ 2859 | "db-command.php" 2860 | ] 2861 | }, 2862 | "notification-url": "https://packagist.org/downloads/", 2863 | "license": [ 2864 | "MIT" 2865 | ], 2866 | "authors": [ 2867 | { 2868 | "name": "Daniel Bachhuber", 2869 | "email": "daniel@runcommand.io", 2870 | "homepage": "https://runcommand.io" 2871 | } 2872 | ], 2873 | "description": "Performs basic database operations using credentials stored in wp-config.php.", 2874 | "homepage": "https://github.com/wp-cli/db-command", 2875 | "support": { 2876 | "issues": "https://github.com/wp-cli/db-command/issues", 2877 | "source": "https://github.com/wp-cli/db-command/tree/v2.0.16" 2878 | }, 2879 | "time": "2021-08-12T15:21:06+00:00" 2880 | }, 2881 | { 2882 | "name": "wp-cli/embed-command", 2883 | "version": "v2.0.9", 2884 | "source": { 2885 | "type": "git", 2886 | "url": "https://github.com/wp-cli/embed-command.git", 2887 | "reference": "ec74f3f34cb9c028fd39ebf8cca3a1504fd599ba" 2888 | }, 2889 | "dist": { 2890 | "type": "zip", 2891 | "url": "https://api.github.com/repos/wp-cli/embed-command/zipball/ec74f3f34cb9c028fd39ebf8cca3a1504fd599ba", 2892 | "reference": "ec74f3f34cb9c028fd39ebf8cca3a1504fd599ba", 2893 | "shasum": "" 2894 | }, 2895 | "require": { 2896 | "wp-cli/wp-cli": "^2.5" 2897 | }, 2898 | "require-dev": { 2899 | "wp-cli/entity-command": "^1.3 || ^2", 2900 | "wp-cli/wp-cli-tests": "^3.0.11" 2901 | }, 2902 | "type": "wp-cli-package", 2903 | "extra": { 2904 | "branch-alias": { 2905 | "dev-master": "2.x-dev" 2906 | }, 2907 | "bundled": true, 2908 | "commands": [ 2909 | "embed", 2910 | "embed fetch", 2911 | "embed provider", 2912 | "embed provider list", 2913 | "embed provider match", 2914 | "embed handler", 2915 | "embed handler list", 2916 | "embed cache", 2917 | "embed cache clear", 2918 | "embed cache find", 2919 | "embed cache trigger" 2920 | ] 2921 | }, 2922 | "autoload": { 2923 | "psr-4": { 2924 | "WP_CLI\\Embeds\\": "src/" 2925 | }, 2926 | "files": [ 2927 | "embed-command.php" 2928 | ] 2929 | }, 2930 | "notification-url": "https://packagist.org/downloads/", 2931 | "license": [ 2932 | "MIT" 2933 | ], 2934 | "authors": [ 2935 | { 2936 | "name": "Pascal Birchler", 2937 | "homepage": "https://pascalbirchler.com/" 2938 | } 2939 | ], 2940 | "description": "Inspects oEmbed providers, clears embed cache, and more.", 2941 | "homepage": "https://github.com/wp-cli/embed-command", 2942 | "support": { 2943 | "issues": "https://github.com/wp-cli/embed-command/issues", 2944 | "source": "https://github.com/wp-cli/embed-command/tree/v2.0.9" 2945 | }, 2946 | "time": "2021-05-12T06:08:37+00:00" 2947 | }, 2948 | { 2949 | "name": "wp-cli/entity-command", 2950 | "version": "v2.1.0", 2951 | "source": { 2952 | "type": "git", 2953 | "url": "https://github.com/wp-cli/entity-command.git", 2954 | "reference": "9b3c030d5b056f3f7b8835e117139f92799340a9" 2955 | }, 2956 | "dist": { 2957 | "type": "zip", 2958 | "url": "https://api.github.com/repos/wp-cli/entity-command/zipball/9b3c030d5b056f3f7b8835e117139f92799340a9", 2959 | "reference": "9b3c030d5b056f3f7b8835e117139f92799340a9", 2960 | "shasum": "" 2961 | }, 2962 | "require": { 2963 | "wp-cli/wp-cli": "^2.5" 2964 | }, 2965 | "require-dev": { 2966 | "wp-cli/cache-command": "^1 || ^2", 2967 | "wp-cli/db-command": "^1.3 || ^2", 2968 | "wp-cli/extension-command": "^1.2 || ^2", 2969 | "wp-cli/media-command": "^1.1 || ^2", 2970 | "wp-cli/wp-cli-tests": "^3.0.11" 2971 | }, 2972 | "type": "wp-cli-package", 2973 | "extra": { 2974 | "branch-alias": { 2975 | "dev-master": "2.x-dev" 2976 | }, 2977 | "bundled": true, 2978 | "commands": [ 2979 | "comment", 2980 | "comment approve", 2981 | "comment count", 2982 | "comment create", 2983 | "comment delete", 2984 | "comment exists", 2985 | "comment generate", 2986 | "comment get", 2987 | "comment list", 2988 | "comment meta", 2989 | "comment meta add", 2990 | "comment meta delete", 2991 | "comment meta get", 2992 | "comment meta list", 2993 | "comment meta patch", 2994 | "comment meta pluck", 2995 | "comment meta update", 2996 | "comment recount", 2997 | "comment spam", 2998 | "comment status", 2999 | "comment trash", 3000 | "comment unapprove", 3001 | "comment unspam", 3002 | "comment untrash", 3003 | "comment update", 3004 | "menu", 3005 | "menu create", 3006 | "menu delete", 3007 | "menu item", 3008 | "menu item add-custom", 3009 | "menu item add-post", 3010 | "menu item add-term", 3011 | "menu item delete", 3012 | "menu item list", 3013 | "menu item update", 3014 | "menu list", 3015 | "menu location", 3016 | "menu location assign", 3017 | "menu location list", 3018 | "menu location remove", 3019 | "network meta", 3020 | "network meta add", 3021 | "network meta delete", 3022 | "network meta get", 3023 | "network meta list", 3024 | "network meta patch", 3025 | "network meta pluck", 3026 | "network meta update", 3027 | "option", 3028 | "option add", 3029 | "option delete", 3030 | "option get", 3031 | "option list", 3032 | "option patch", 3033 | "option pluck", 3034 | "option update", 3035 | "post", 3036 | "post create", 3037 | "post delete", 3038 | "post edit", 3039 | "post exists", 3040 | "post generate", 3041 | "post get", 3042 | "post list", 3043 | "post meta", 3044 | "post meta add", 3045 | "post meta delete", 3046 | "post meta get", 3047 | "post meta list", 3048 | "post meta patch", 3049 | "post meta pluck", 3050 | "post meta update", 3051 | "post term", 3052 | "post term add", 3053 | "post term list", 3054 | "post term remove", 3055 | "post term set", 3056 | "post update", 3057 | "post-type", 3058 | "post-type get", 3059 | "post-type list", 3060 | "site", 3061 | "site activate", 3062 | "site archive", 3063 | "site create", 3064 | "site deactivate", 3065 | "site delete", 3066 | "site empty", 3067 | "site list", 3068 | "site mature", 3069 | "site option", 3070 | "site private", 3071 | "site public", 3072 | "site spam", 3073 | "site unarchive", 3074 | "site unmature", 3075 | "site unspam", 3076 | "taxonomy", 3077 | "taxonomy get", 3078 | "taxonomy list", 3079 | "term", 3080 | "term create", 3081 | "term delete", 3082 | "term generate", 3083 | "term get", 3084 | "term list", 3085 | "term meta", 3086 | "term meta add", 3087 | "term meta delete", 3088 | "term meta get", 3089 | "term meta list", 3090 | "term meta patch", 3091 | "term meta pluck", 3092 | "term meta update", 3093 | "term recount", 3094 | "term update", 3095 | "user", 3096 | "user add-cap", 3097 | "user add-role", 3098 | "user create", 3099 | "user delete", 3100 | "user generate", 3101 | "user get", 3102 | "user import-csv", 3103 | "user list", 3104 | "user list-caps", 3105 | "user meta", 3106 | "user meta add", 3107 | "user meta delete", 3108 | "user meta get", 3109 | "user meta list", 3110 | "user meta patch", 3111 | "user meta pluck", 3112 | "user meta update", 3113 | "user remove-cap", 3114 | "user remove-role", 3115 | "user reset-password", 3116 | "user session", 3117 | "user session destroy", 3118 | "user session list", 3119 | "user set-role", 3120 | "user spam", 3121 | "user term", 3122 | "user term add", 3123 | "user term list", 3124 | "user term remove", 3125 | "user term set", 3126 | "user unspam", 3127 | "user update" 3128 | ] 3129 | }, 3130 | "autoload": { 3131 | "psr-4": { 3132 | "": "src/", 3133 | "WP_CLI\\": "src/WP_CLI" 3134 | }, 3135 | "files": [ 3136 | "entity-command.php" 3137 | ] 3138 | }, 3139 | "notification-url": "https://packagist.org/downloads/", 3140 | "license": [ 3141 | "MIT" 3142 | ], 3143 | "authors": [ 3144 | { 3145 | "name": "Daniel Bachhuber", 3146 | "email": "daniel@runcommand.io", 3147 | "homepage": "https://runcommand.io" 3148 | } 3149 | ], 3150 | "description": "Manage WordPress comments, menus, options, posts, sites, terms, and users.", 3151 | "homepage": "https://github.com/wp-cli/entity-command", 3152 | "support": { 3153 | "issues": "https://github.com/wp-cli/entity-command/issues", 3154 | "source": "https://github.com/wp-cli/entity-command/tree/v2.1.0" 3155 | }, 3156 | "time": "2021-05-11T15:55:07+00:00" 3157 | }, 3158 | { 3159 | "name": "wp-cli/eval-command", 3160 | "version": "v2.1.0", 3161 | "source": { 3162 | "type": "git", 3163 | "url": "https://github.com/wp-cli/eval-command.git", 3164 | "reference": "dcda02194bd0ca773ce03dec6093ac0d271f8976" 3165 | }, 3166 | "dist": { 3167 | "type": "zip", 3168 | "url": "https://api.github.com/repos/wp-cli/eval-command/zipball/dcda02194bd0ca773ce03dec6093ac0d271f8976", 3169 | "reference": "dcda02194bd0ca773ce03dec6093ac0d271f8976", 3170 | "shasum": "" 3171 | }, 3172 | "require": { 3173 | "wp-cli/wp-cli": "^2.5" 3174 | }, 3175 | "require-dev": { 3176 | "wp-cli/wp-cli-tests": "^3.0.11" 3177 | }, 3178 | "type": "wp-cli-package", 3179 | "extra": { 3180 | "branch-alias": { 3181 | "dev-master": "2.x-dev" 3182 | }, 3183 | "bundled": true, 3184 | "commands": [ 3185 | "eval", 3186 | "eval-file" 3187 | ] 3188 | }, 3189 | "autoload": { 3190 | "psr-4": { 3191 | "": "src/" 3192 | }, 3193 | "files": [ 3194 | "eval-command.php" 3195 | ] 3196 | }, 3197 | "notification-url": "https://packagist.org/downloads/", 3198 | "license": [ 3199 | "MIT" 3200 | ], 3201 | "authors": [ 3202 | { 3203 | "name": "Daniel Bachhuber", 3204 | "email": "daniel@runcommand.io", 3205 | "homepage": "https://runcommand.io" 3206 | } 3207 | ], 3208 | "description": "Executes arbitrary PHP code or files.", 3209 | "homepage": "https://github.com/wp-cli/eval-command", 3210 | "support": { 3211 | "issues": "https://github.com/wp-cli/eval-command/issues", 3212 | "source": "https://github.com/wp-cli/eval-command/tree/v2.1.0" 3213 | }, 3214 | "time": "2021-05-11T08:39:18+00:00" 3215 | }, 3216 | { 3217 | "name": "wp-cli/export-command", 3218 | "version": "v2.0.9", 3219 | "source": { 3220 | "type": "git", 3221 | "url": "https://github.com/wp-cli/export-command.git", 3222 | "reference": "b32d4324e110901cedd8a663bea5563b7e332c44" 3223 | }, 3224 | "dist": { 3225 | "type": "zip", 3226 | "url": "https://api.github.com/repos/wp-cli/export-command/zipball/b32d4324e110901cedd8a663bea5563b7e332c44", 3227 | "reference": "b32d4324e110901cedd8a663bea5563b7e332c44", 3228 | "shasum": "" 3229 | }, 3230 | "require": { 3231 | "nb/oxymel": "~0.1.0", 3232 | "wp-cli/wp-cli": "^2.5" 3233 | }, 3234 | "require-dev": { 3235 | "wp-cli/db-command": "^1.3 || ^2", 3236 | "wp-cli/entity-command": "^1.3 || ^2", 3237 | "wp-cli/extension-command": "^1.2 || ^2", 3238 | "wp-cli/import-command": "^1 || ^2", 3239 | "wp-cli/media-command": "^1 || ^2", 3240 | "wp-cli/wp-cli-tests": "^3.0.11" 3241 | }, 3242 | "type": "wp-cli-package", 3243 | "extra": { 3244 | "branch-alias": { 3245 | "dev-master": "2.x-dev" 3246 | }, 3247 | "bundled": true, 3248 | "commands": [ 3249 | "export" 3250 | ] 3251 | }, 3252 | "autoload": { 3253 | "psr-4": { 3254 | "": "src/" 3255 | }, 3256 | "files": [ 3257 | "export-command.php" 3258 | ] 3259 | }, 3260 | "notification-url": "https://packagist.org/downloads/", 3261 | "license": [ 3262 | "MIT" 3263 | ], 3264 | "authors": [ 3265 | { 3266 | "name": "Daniel Bachhuber", 3267 | "email": "daniel@runcommand.io", 3268 | "homepage": "https://runcommand.io" 3269 | } 3270 | ], 3271 | "description": "Exports WordPress content to a WXR file.", 3272 | "homepage": "https://github.com/wp-cli/export-command", 3273 | "support": { 3274 | "issues": "https://github.com/wp-cli/export-command/issues", 3275 | "source": "https://github.com/wp-cli/export-command/tree/v2.0.9" 3276 | }, 3277 | "time": "2021-07-25T17:00:42+00:00" 3278 | }, 3279 | { 3280 | "name": "wp-cli/extension-command", 3281 | "version": "v2.1.0", 3282 | "source": { 3283 | "type": "git", 3284 | "url": "https://github.com/wp-cli/extension-command.git", 3285 | "reference": "7ad4f9c0c93a1ee737521f825f161d4b79a46945" 3286 | }, 3287 | "dist": { 3288 | "type": "zip", 3289 | "url": "https://api.github.com/repos/wp-cli/extension-command/zipball/7ad4f9c0c93a1ee737521f825f161d4b79a46945", 3290 | "reference": "7ad4f9c0c93a1ee737521f825f161d4b79a46945", 3291 | "shasum": "" 3292 | }, 3293 | "require": { 3294 | "composer/semver": "^1.4 || ^2 || ^3", 3295 | "wp-cli/wp-cli": "^2.5" 3296 | }, 3297 | "require-dev": { 3298 | "wp-cli/entity-command": "^1.3 || ^2", 3299 | "wp-cli/scaffold-command": "^1.2 || ^2", 3300 | "wp-cli/wp-cli-tests": "^3.0.11" 3301 | }, 3302 | "type": "wp-cli-package", 3303 | "extra": { 3304 | "branch-alias": { 3305 | "dev-master": "2.x-dev" 3306 | }, 3307 | "bundled": true, 3308 | "commands": [ 3309 | "plugin", 3310 | "plugin activate", 3311 | "plugin deactivate", 3312 | "plugin delete", 3313 | "plugin get", 3314 | "plugin install", 3315 | "plugin is-installed", 3316 | "plugin list", 3317 | "plugin path", 3318 | "plugin search", 3319 | "plugin status", 3320 | "plugin toggle", 3321 | "plugin uninstall", 3322 | "plugin update", 3323 | "theme", 3324 | "theme activate", 3325 | "theme delete", 3326 | "theme disable", 3327 | "theme enable", 3328 | "theme get", 3329 | "theme install", 3330 | "theme is-installed", 3331 | "theme list", 3332 | "theme mod", 3333 | "theme mod get", 3334 | "theme mod set", 3335 | "theme mod remove", 3336 | "theme path", 3337 | "theme search", 3338 | "theme status", 3339 | "theme update", 3340 | "theme mod list" 3341 | ] 3342 | }, 3343 | "autoload": { 3344 | "psr-4": { 3345 | "": "src/" 3346 | }, 3347 | "files": [ 3348 | "extension-command.php" 3349 | ] 3350 | }, 3351 | "notification-url": "https://packagist.org/downloads/", 3352 | "license": [ 3353 | "MIT" 3354 | ], 3355 | "authors": [ 3356 | { 3357 | "name": "Daniel Bachhuber", 3358 | "email": "daniel@runcommand.io", 3359 | "homepage": "https://runcommand.io" 3360 | }, 3361 | { 3362 | "name": "Alain Schlesser", 3363 | "email": "alain.schlesser@gmail.com", 3364 | "homepage": "https://www.alainschlesser.com" 3365 | } 3366 | ], 3367 | "description": "Manages plugins and themes, including installs, activations, and updates.", 3368 | "homepage": "https://github.com/wp-cli/extension-command", 3369 | "support": { 3370 | "issues": "https://github.com/wp-cli/extension-command/issues", 3371 | "source": "https://github.com/wp-cli/extension-command/tree/v2.1.0" 3372 | }, 3373 | "time": "2021-05-12T06:06:34+00:00" 3374 | }, 3375 | { 3376 | "name": "wp-cli/i18n-command", 3377 | "version": "v2.2.9", 3378 | "source": { 3379 | "type": "git", 3380 | "url": "https://github.com/wp-cli/i18n-command.git", 3381 | "reference": "26e171c5708060b6d7cede9af934b946f5ec3a59" 3382 | }, 3383 | "dist": { 3384 | "type": "zip", 3385 | "url": "https://api.github.com/repos/wp-cli/i18n-command/zipball/26e171c5708060b6d7cede9af934b946f5ec3a59", 3386 | "reference": "26e171c5708060b6d7cede9af934b946f5ec3a59", 3387 | "shasum": "" 3388 | }, 3389 | "require": { 3390 | "gettext/gettext": "^4.8", 3391 | "mck89/peast": "^1.13", 3392 | "wp-cli/wp-cli": "^2.5" 3393 | }, 3394 | "require-dev": { 3395 | "wp-cli/scaffold-command": "^1.2 || ^2", 3396 | "wp-cli/wp-cli-tests": "^3.0.11" 3397 | }, 3398 | "suggest": { 3399 | "ext-mbstring": "Used for calculating include/exclude matches in code extraction" 3400 | }, 3401 | "type": "wp-cli-package", 3402 | "extra": { 3403 | "branch-alias": { 3404 | "dev-master": "2.x-dev" 3405 | }, 3406 | "bundled": true, 3407 | "commands": [ 3408 | "i18n", 3409 | "i18n make-pot", 3410 | "i18n make-json" 3411 | ] 3412 | }, 3413 | "autoload": { 3414 | "psr-4": { 3415 | "WP_CLI\\I18n\\": "src/" 3416 | }, 3417 | "files": [ 3418 | "i18n-command.php" 3419 | ] 3420 | }, 3421 | "notification-url": "https://packagist.org/downloads/", 3422 | "license": [ 3423 | "MIT" 3424 | ], 3425 | "authors": [ 3426 | { 3427 | "name": "Pascal Birchler", 3428 | "homepage": "https://pascalbirchler.com/" 3429 | } 3430 | ], 3431 | "description": "Provides internationalization tools for WordPress projects.", 3432 | "homepage": "https://github.com/wp-cli/i18n-command", 3433 | "support": { 3434 | "issues": "https://github.com/wp-cli/i18n-command/issues", 3435 | "source": "https://github.com/wp-cli/i18n-command/tree/v2.2.9" 3436 | }, 3437 | "time": "2021-07-20T21:25:54+00:00" 3438 | }, 3439 | { 3440 | "name": "wp-cli/import-command", 3441 | "version": "v2.0.7", 3442 | "source": { 3443 | "type": "git", 3444 | "url": "https://github.com/wp-cli/import-command.git", 3445 | "reference": "75e6d4273b4a9dbf510d69a44f9371eee0d01294" 3446 | }, 3447 | "dist": { 3448 | "type": "zip", 3449 | "url": "https://api.github.com/repos/wp-cli/import-command/zipball/75e6d4273b4a9dbf510d69a44f9371eee0d01294", 3450 | "reference": "75e6d4273b4a9dbf510d69a44f9371eee0d01294", 3451 | "shasum": "" 3452 | }, 3453 | "require": { 3454 | "wp-cli/wp-cli": "^2.5" 3455 | }, 3456 | "require-dev": { 3457 | "wp-cli/entity-command": "^1.3 || ^2", 3458 | "wp-cli/export-command": "^1 || ^2", 3459 | "wp-cli/extension-command": "^1.2 || ^2", 3460 | "wp-cli/wp-cli-tests": "^3.0.11" 3461 | }, 3462 | "type": "wp-cli-package", 3463 | "extra": { 3464 | "branch-alias": { 3465 | "dev-master": "2.x-dev" 3466 | }, 3467 | "bundled": true, 3468 | "commands": [ 3469 | "import" 3470 | ] 3471 | }, 3472 | "autoload": { 3473 | "psr-4": { 3474 | "": "src/" 3475 | }, 3476 | "files": [ 3477 | "import-command.php" 3478 | ] 3479 | }, 3480 | "notification-url": "https://packagist.org/downloads/", 3481 | "license": [ 3482 | "MIT" 3483 | ], 3484 | "authors": [ 3485 | { 3486 | "name": "Daniel Bachhuber", 3487 | "email": "daniel@runcommand.io", 3488 | "homepage": "https://runcommand.io" 3489 | } 3490 | ], 3491 | "description": "Imports content from a given WXR file.", 3492 | "homepage": "https://github.com/wp-cli/import-command", 3493 | "support": { 3494 | "issues": "https://github.com/wp-cli/import-command/issues", 3495 | "source": "https://github.com/wp-cli/import-command/tree/v2.0.7" 3496 | }, 3497 | "time": "2021-05-12T16:54:12+00:00" 3498 | }, 3499 | { 3500 | "name": "wp-cli/language-command", 3501 | "version": "v2.0.10", 3502 | "source": { 3503 | "type": "git", 3504 | "url": "https://github.com/wp-cli/language-command.git", 3505 | "reference": "4c02ef431e2825eac7b02e5cf4804c47167b6baf" 3506 | }, 3507 | "dist": { 3508 | "type": "zip", 3509 | "url": "https://api.github.com/repos/wp-cli/language-command/zipball/4c02ef431e2825eac7b02e5cf4804c47167b6baf", 3510 | "reference": "4c02ef431e2825eac7b02e5cf4804c47167b6baf", 3511 | "shasum": "" 3512 | }, 3513 | "require": { 3514 | "wp-cli/wp-cli": "^2.5" 3515 | }, 3516 | "require-dev": { 3517 | "wp-cli/db-command": "^1.3 || ^2", 3518 | "wp-cli/entity-command": "^1.3 || ^2", 3519 | "wp-cli/extension-command": "^1.2 || ^2", 3520 | "wp-cli/wp-cli-tests": "^3.0.11" 3521 | }, 3522 | "type": "wp-cli-package", 3523 | "extra": { 3524 | "branch-alias": { 3525 | "dev-master": "2.x-dev" 3526 | }, 3527 | "bundled": true, 3528 | "commands": [ 3529 | "language", 3530 | "language core", 3531 | "language core activate", 3532 | "language core is-installed", 3533 | "language core install", 3534 | "language core list", 3535 | "language core uninstall", 3536 | "language core update", 3537 | "language plugin", 3538 | "language plugin is-installed", 3539 | "language plugin install", 3540 | "language plugin list", 3541 | "language plugin uninstall", 3542 | "language plugin update", 3543 | "language theme", 3544 | "language theme is-installed", 3545 | "language theme install", 3546 | "language theme list", 3547 | "language theme uninstall", 3548 | "language theme update" 3549 | ] 3550 | }, 3551 | "autoload": { 3552 | "psr-4": { 3553 | "": "src/" 3554 | }, 3555 | "files": [ 3556 | "language-command.php" 3557 | ] 3558 | }, 3559 | "notification-url": "https://packagist.org/downloads/", 3560 | "license": [ 3561 | "MIT" 3562 | ], 3563 | "authors": [ 3564 | { 3565 | "name": "Daniel Bachhuber", 3566 | "email": "daniel@runcommand.io", 3567 | "homepage": "https://runcommand.io" 3568 | } 3569 | ], 3570 | "description": "Installs, activates, and manages language packs.", 3571 | "homepage": "https://github.com/wp-cli/language-command", 3572 | "support": { 3573 | "issues": "https://github.com/wp-cli/language-command/issues", 3574 | "source": "https://github.com/wp-cli/language-command/tree/v2.0.10" 3575 | }, 3576 | "time": "2021-05-10T10:26:57+00:00" 3577 | }, 3578 | { 3579 | "name": "wp-cli/maintenance-mode-command", 3580 | "version": "v2.0.6", 3581 | "source": { 3582 | "type": "git", 3583 | "url": "https://github.com/wp-cli/maintenance-mode-command.git", 3584 | "reference": "26c1c0a79ed1194c863cb95fa364b4db7929d7cc" 3585 | }, 3586 | "dist": { 3587 | "type": "zip", 3588 | "url": "https://api.github.com/repos/wp-cli/maintenance-mode-command/zipball/26c1c0a79ed1194c863cb95fa364b4db7929d7cc", 3589 | "reference": "26c1c0a79ed1194c863cb95fa364b4db7929d7cc", 3590 | "shasum": "" 3591 | }, 3592 | "require": { 3593 | "wp-cli/wp-cli": "^2.5" 3594 | }, 3595 | "require-dev": { 3596 | "wp-cli/wp-cli-tests": "^3.0.11" 3597 | }, 3598 | "type": "wp-cli-package", 3599 | "extra": { 3600 | "branch-alias": { 3601 | "dev-master": "2.x-dev" 3602 | }, 3603 | "bundled": true, 3604 | "commands": [ 3605 | "maintenance-mode", 3606 | "maintenance-mode activate", 3607 | "maintenance-mode deactivate", 3608 | "maintenance-mode status", 3609 | "maintenance-mode is-active" 3610 | ] 3611 | }, 3612 | "autoload": { 3613 | "psr-4": { 3614 | "WP_CLI\\MaintenanceMode\\": "src/" 3615 | }, 3616 | "files": [ 3617 | "maintenance-mode-command.php" 3618 | ] 3619 | }, 3620 | "notification-url": "https://packagist.org/downloads/", 3621 | "license": [ 3622 | "MIT" 3623 | ], 3624 | "authors": [ 3625 | { 3626 | "name": "Thrijith Thankachan", 3627 | "email": "thrijith13@gmail.com", 3628 | "homepage": "https://thrijith.com" 3629 | } 3630 | ], 3631 | "description": "Activates, deactivates or checks the status of the maintenance mode of a site.", 3632 | "homepage": "https://github.com/wp-cli/maintenance-mode-command", 3633 | "support": { 3634 | "issues": "https://github.com/wp-cli/maintenance-mode-command/issues", 3635 | "source": "https://github.com/wp-cli/maintenance-mode-command/tree/v2.0.6" 3636 | }, 3637 | "time": "2021-05-10T10:23:08+00:00" 3638 | }, 3639 | { 3640 | "name": "wp-cli/media-command", 3641 | "version": "v2.0.11", 3642 | "source": { 3643 | "type": "git", 3644 | "url": "https://github.com/wp-cli/media-command.git", 3645 | "reference": "165a462e234e55db2174f9f0f6fab72040e9c510" 3646 | }, 3647 | "dist": { 3648 | "type": "zip", 3649 | "url": "https://api.github.com/repos/wp-cli/media-command/zipball/165a462e234e55db2174f9f0f6fab72040e9c510", 3650 | "reference": "165a462e234e55db2174f9f0f6fab72040e9c510", 3651 | "shasum": "" 3652 | }, 3653 | "require": { 3654 | "wp-cli/wp-cli": "^2.5" 3655 | }, 3656 | "require-dev": { 3657 | "wp-cli/entity-command": "^1.3 || ^2", 3658 | "wp-cli/extension-command": "^2.0", 3659 | "wp-cli/wp-cli-tests": "^3.0.11" 3660 | }, 3661 | "type": "wp-cli-package", 3662 | "extra": { 3663 | "branch-alias": { 3664 | "dev-master": "2.x-dev" 3665 | }, 3666 | "bundled": true, 3667 | "commands": [ 3668 | "media", 3669 | "media import", 3670 | "media regenerate", 3671 | "media image-size" 3672 | ] 3673 | }, 3674 | "autoload": { 3675 | "psr-4": { 3676 | "": "src/" 3677 | }, 3678 | "files": [ 3679 | "media-command.php" 3680 | ] 3681 | }, 3682 | "notification-url": "https://packagist.org/downloads/", 3683 | "license": [ 3684 | "MIT" 3685 | ], 3686 | "authors": [ 3687 | { 3688 | "name": "Daniel Bachhuber", 3689 | "email": "daniel@runcommand.io", 3690 | "homepage": "https://runcommand.io" 3691 | } 3692 | ], 3693 | "description": "Imports files as attachments, regenerates thumbnails, or lists registered image sizes.", 3694 | "homepage": "https://github.com/wp-cli/media-command", 3695 | "support": { 3696 | "issues": "https://github.com/wp-cli/media-command/issues", 3697 | "source": "https://github.com/wp-cli/media-command/tree/v2.0.11" 3698 | }, 3699 | "time": "2021-05-12T06:08:20+00:00" 3700 | }, 3701 | { 3702 | "name": "wp-cli/mustangostang-spyc", 3703 | "version": "0.6.3", 3704 | "source": { 3705 | "type": "git", 3706 | "url": "https://github.com/wp-cli/spyc.git", 3707 | "reference": "6aa0b4da69ce9e9a2c8402dab8d43cf32c581cc7" 3708 | }, 3709 | "dist": { 3710 | "type": "zip", 3711 | "url": "https://api.github.com/repos/wp-cli/spyc/zipball/6aa0b4da69ce9e9a2c8402dab8d43cf32c581cc7", 3712 | "reference": "6aa0b4da69ce9e9a2c8402dab8d43cf32c581cc7", 3713 | "shasum": "" 3714 | }, 3715 | "require": { 3716 | "php": ">=5.3.1" 3717 | }, 3718 | "require-dev": { 3719 | "phpunit/phpunit": "4.3.*@dev" 3720 | }, 3721 | "type": "library", 3722 | "extra": { 3723 | "branch-alias": { 3724 | "dev-master": "0.5.x-dev" 3725 | } 3726 | }, 3727 | "autoload": { 3728 | "psr-4": { 3729 | "Mustangostang\\": "src/" 3730 | }, 3731 | "files": [ 3732 | "includes/functions.php" 3733 | ] 3734 | }, 3735 | "notification-url": "https://packagist.org/downloads/", 3736 | "license": [ 3737 | "MIT" 3738 | ], 3739 | "authors": [ 3740 | { 3741 | "name": "mustangostang", 3742 | "email": "vlad.andersen@gmail.com" 3743 | } 3744 | ], 3745 | "description": "A simple YAML loader/dumper class for PHP (WP-CLI fork)", 3746 | "homepage": "https://github.com/mustangostang/spyc/", 3747 | "support": { 3748 | "source": "https://github.com/wp-cli/spyc/tree/autoload" 3749 | }, 3750 | "time": "2017-04-25T11:26:20+00:00" 3751 | }, 3752 | { 3753 | "name": "wp-cli/package-command", 3754 | "version": "v2.1.1", 3755 | "source": { 3756 | "type": "git", 3757 | "url": "https://github.com/wp-cli/package-command.git", 3758 | "reference": "2e345df6c67d4f9b4bf42ce12a7fa07b2b44399d" 3759 | }, 3760 | "dist": { 3761 | "type": "zip", 3762 | "url": "https://api.github.com/repos/wp-cli/package-command/zipball/2e345df6c67d4f9b4bf42ce12a7fa07b2b44399d", 3763 | "reference": "2e345df6c67d4f9b4bf42ce12a7fa07b2b44399d", 3764 | "shasum": "" 3765 | }, 3766 | "require": { 3767 | "composer/composer": ">=1.2.0 <1.7.0 || ^1.7.1 || ^2.0.0", 3768 | "ext-json": "*", 3769 | "wp-cli/wp-cli": "^2.5" 3770 | }, 3771 | "require-dev": { 3772 | "wp-cli/scaffold-command": "^1 || ^2", 3773 | "wp-cli/wp-cli-tests": "^3.0.11" 3774 | }, 3775 | "type": "wp-cli-package", 3776 | "extra": { 3777 | "branch-alias": { 3778 | "dev-master": "2.x-dev" 3779 | }, 3780 | "bundled": true, 3781 | "commands": [ 3782 | "package", 3783 | "package browse", 3784 | "package install", 3785 | "package list", 3786 | "package update", 3787 | "package uninstall" 3788 | ] 3789 | }, 3790 | "autoload": { 3791 | "psr-4": { 3792 | "": "src/" 3793 | }, 3794 | "files": [ 3795 | "package-command.php" 3796 | ] 3797 | }, 3798 | "notification-url": "https://packagist.org/downloads/", 3799 | "license": [ 3800 | "MIT" 3801 | ], 3802 | "authors": [ 3803 | { 3804 | "name": "Daniel Bachhuber", 3805 | "email": "daniel@runcommand.io", 3806 | "homepage": "https://runcommand.io" 3807 | } 3808 | ], 3809 | "description": "Lists, installs, and removes WP-CLI packages.", 3810 | "homepage": "https://github.com/wp-cli/package-command", 3811 | "support": { 3812 | "issues": "https://github.com/wp-cli/package-command/issues", 3813 | "source": "https://github.com/wp-cli/package-command/tree/v2.1.1" 3814 | }, 3815 | "time": "2021-05-12T17:09:23+00:00" 3816 | }, 3817 | { 3818 | "name": "wp-cli/php-cli-tools", 3819 | "version": "v0.11.13", 3820 | "source": { 3821 | "type": "git", 3822 | "url": "https://github.com/wp-cli/php-cli-tools.git", 3823 | "reference": "a2866855ac1abc53005c102e901553ad5772dc04" 3824 | }, 3825 | "dist": { 3826 | "type": "zip", 3827 | "url": "https://api.github.com/repos/wp-cli/php-cli-tools/zipball/a2866855ac1abc53005c102e901553ad5772dc04", 3828 | "reference": "a2866855ac1abc53005c102e901553ad5772dc04", 3829 | "shasum": "" 3830 | }, 3831 | "require": { 3832 | "php": ">= 5.3.0" 3833 | }, 3834 | "type": "library", 3835 | "autoload": { 3836 | "psr-0": { 3837 | "cli": "lib/" 3838 | }, 3839 | "files": [ 3840 | "lib/cli/cli.php" 3841 | ] 3842 | }, 3843 | "notification-url": "https://packagist.org/downloads/", 3844 | "license": [ 3845 | "MIT" 3846 | ], 3847 | "authors": [ 3848 | { 3849 | "name": "Daniel Bachhuber", 3850 | "email": "daniel@handbuilt.co", 3851 | "role": "Maintainer" 3852 | }, 3853 | { 3854 | "name": "James Logsdon", 3855 | "email": "jlogsdon@php.net", 3856 | "role": "Developer" 3857 | } 3858 | ], 3859 | "description": "Console utilities for PHP", 3860 | "homepage": "http://github.com/wp-cli/php-cli-tools", 3861 | "keywords": [ 3862 | "cli", 3863 | "console" 3864 | ], 3865 | "support": { 3866 | "issues": "https://github.com/wp-cli/php-cli-tools/issues", 3867 | "source": "https://github.com/wp-cli/php-cli-tools/tree/v0.11.13" 3868 | }, 3869 | "time": "2021-07-01T15:08:16+00:00" 3870 | }, 3871 | { 3872 | "name": "wp-cli/rewrite-command", 3873 | "version": "v2.0.8", 3874 | "source": { 3875 | "type": "git", 3876 | "url": "https://github.com/wp-cli/rewrite-command.git", 3877 | "reference": "468358e07943a7a8be70c95e20d45412d82899ac" 3878 | }, 3879 | "dist": { 3880 | "type": "zip", 3881 | "url": "https://api.github.com/repos/wp-cli/rewrite-command/zipball/468358e07943a7a8be70c95e20d45412d82899ac", 3882 | "reference": "468358e07943a7a8be70c95e20d45412d82899ac", 3883 | "shasum": "" 3884 | }, 3885 | "require": { 3886 | "wp-cli/wp-cli": "^2.5" 3887 | }, 3888 | "require-dev": { 3889 | "wp-cli/entity-command": "^1.3 || ^2", 3890 | "wp-cli/wp-cli-tests": "^3.0.11" 3891 | }, 3892 | "type": "wp-cli-package", 3893 | "extra": { 3894 | "branch-alias": { 3895 | "dev-master": "2.x-dev" 3896 | }, 3897 | "bundled": true, 3898 | "commands": [ 3899 | "rewrite", 3900 | "rewrite flush", 3901 | "rewrite list", 3902 | "rewrite structure" 3903 | ] 3904 | }, 3905 | "autoload": { 3906 | "psr-4": { 3907 | "": "src/" 3908 | }, 3909 | "files": [ 3910 | "rewrite-command.php" 3911 | ] 3912 | }, 3913 | "notification-url": "https://packagist.org/downloads/", 3914 | "license": [ 3915 | "MIT" 3916 | ], 3917 | "authors": [ 3918 | { 3919 | "name": "Daniel Bachhuber", 3920 | "email": "daniel@runcommand.io", 3921 | "homepage": "https://runcommand.io" 3922 | } 3923 | ], 3924 | "description": "Lists or flushes the site's rewrite rules, updates the permalink structure.", 3925 | "homepage": "https://github.com/wp-cli/rewrite-command", 3926 | "support": { 3927 | "issues": "https://github.com/wp-cli/rewrite-command/issues", 3928 | "source": "https://github.com/wp-cli/rewrite-command/tree/v2.0.8" 3929 | }, 3930 | "time": "2021-05-10T10:16:23+00:00" 3931 | }, 3932 | { 3933 | "name": "wp-cli/role-command", 3934 | "version": "v2.0.7", 3935 | "source": { 3936 | "type": "git", 3937 | "url": "https://github.com/wp-cli/role-command.git", 3938 | "reference": "7460566febe82b14c34b105c4c6326d3e23f9295" 3939 | }, 3940 | "dist": { 3941 | "type": "zip", 3942 | "url": "https://api.github.com/repos/wp-cli/role-command/zipball/7460566febe82b14c34b105c4c6326d3e23f9295", 3943 | "reference": "7460566febe82b14c34b105c4c6326d3e23f9295", 3944 | "shasum": "" 3945 | }, 3946 | "require": { 3947 | "wp-cli/wp-cli": "^2.5" 3948 | }, 3949 | "require-dev": { 3950 | "wp-cli/wp-cli-tests": "^3.0.11" 3951 | }, 3952 | "type": "wp-cli-package", 3953 | "extra": { 3954 | "branch-alias": { 3955 | "dev-master": "2.x-dev" 3956 | }, 3957 | "bundled": true, 3958 | "commands": [ 3959 | "role", 3960 | "role create", 3961 | "role delete", 3962 | "role exists", 3963 | "role list", 3964 | "role reset", 3965 | "cap", 3966 | "cap add", 3967 | "cap list", 3968 | "cap remove" 3969 | ] 3970 | }, 3971 | "autoload": { 3972 | "psr-4": { 3973 | "": "src/" 3974 | }, 3975 | "files": [ 3976 | "role-command.php" 3977 | ] 3978 | }, 3979 | "notification-url": "https://packagist.org/downloads/", 3980 | "license": [ 3981 | "MIT" 3982 | ], 3983 | "authors": [ 3984 | { 3985 | "name": "Daniel Bachhuber", 3986 | "email": "daniel@runcommand.io", 3987 | "homepage": "https://runcommand.io" 3988 | } 3989 | ], 3990 | "description": "Adds, removes, lists, and resets roles and capabilities.", 3991 | "homepage": "https://github.com/wp-cli/role-command", 3992 | "support": { 3993 | "issues": "https://github.com/wp-cli/role-command/issues", 3994 | "source": "https://github.com/wp-cli/role-command/tree/v2.0.7" 3995 | }, 3996 | "time": "2021-05-10T10:22:04+00:00" 3997 | }, 3998 | { 3999 | "name": "wp-cli/scaffold-command", 4000 | "version": "v2.0.14", 4001 | "source": { 4002 | "type": "git", 4003 | "url": "https://github.com/wp-cli/scaffold-command.git", 4004 | "reference": "cde44524fd0499c0364a5ae3a6dc492796e80e0a" 4005 | }, 4006 | "dist": { 4007 | "type": "zip", 4008 | "url": "https://api.github.com/repos/wp-cli/scaffold-command/zipball/cde44524fd0499c0364a5ae3a6dc492796e80e0a", 4009 | "reference": "cde44524fd0499c0364a5ae3a6dc492796e80e0a", 4010 | "shasum": "" 4011 | }, 4012 | "require": { 4013 | "wp-cli/wp-cli": "^2.5" 4014 | }, 4015 | "require-dev": { 4016 | "wp-cli/extension-command": "^1.2 || ^2", 4017 | "wp-cli/wp-cli-tests": "^3.0.11" 4018 | }, 4019 | "type": "wp-cli-package", 4020 | "extra": { 4021 | "branch-alias": { 4022 | "dev-master": "2.x-dev" 4023 | }, 4024 | "bundled": true, 4025 | "commands": [ 4026 | "scaffold", 4027 | "scaffold underscores", 4028 | "scaffold block", 4029 | "scaffold child-theme", 4030 | "scaffold plugin", 4031 | "scaffold plugin-tests", 4032 | "scaffold post-type", 4033 | "scaffold taxonomy", 4034 | "scaffold theme-tests" 4035 | ] 4036 | }, 4037 | "autoload": { 4038 | "psr-4": { 4039 | "": "src/" 4040 | }, 4041 | "files": [ 4042 | "scaffold-command.php" 4043 | ] 4044 | }, 4045 | "notification-url": "https://packagist.org/downloads/", 4046 | "license": [ 4047 | "MIT" 4048 | ], 4049 | "authors": [ 4050 | { 4051 | "name": "Daniel Bachhuber", 4052 | "email": "daniel@runcommand.io", 4053 | "homepage": "https://runcommand.io" 4054 | } 4055 | ], 4056 | "description": "Generates code for post types, taxonomies, blocks, plugins, child themes, etc.", 4057 | "homepage": "https://github.com/wp-cli/scaffold-command", 4058 | "support": { 4059 | "issues": "https://github.com/wp-cli/scaffold-command/issues", 4060 | "source": "https://github.com/wp-cli/scaffold-command/tree/v2.0.14" 4061 | }, 4062 | "time": "2021-05-10T10:21:19+00:00" 4063 | }, 4064 | { 4065 | "name": "wp-cli/search-replace-command", 4066 | "version": "v2.0.14", 4067 | "source": { 4068 | "type": "git", 4069 | "url": "https://github.com/wp-cli/search-replace-command.git", 4070 | "reference": "091a3bcc071bf2bd889b9229aa4cf1aa238cd0e9" 4071 | }, 4072 | "dist": { 4073 | "type": "zip", 4074 | "url": "https://api.github.com/repos/wp-cli/search-replace-command/zipball/091a3bcc071bf2bd889b9229aa4cf1aa238cd0e9", 4075 | "reference": "091a3bcc071bf2bd889b9229aa4cf1aa238cd0e9", 4076 | "shasum": "" 4077 | }, 4078 | "require": { 4079 | "wp-cli/wp-cli": "^2.5" 4080 | }, 4081 | "require-dev": { 4082 | "wp-cli/db-command": "^1.3 || ^2", 4083 | "wp-cli/entity-command": "^1.3 || ^2", 4084 | "wp-cli/extension-command": "^1.2 || ^2", 4085 | "wp-cli/wp-cli-tests": "^3.0.18" 4086 | }, 4087 | "type": "wp-cli-package", 4088 | "extra": { 4089 | "branch-alias": { 4090 | "dev-master": "2.x-dev" 4091 | }, 4092 | "bundled": true, 4093 | "commands": [ 4094 | "search-replace" 4095 | ] 4096 | }, 4097 | "autoload": { 4098 | "psr-4": { 4099 | "": "src/" 4100 | }, 4101 | "files": [ 4102 | "search-replace-command.php" 4103 | ] 4104 | }, 4105 | "notification-url": "https://packagist.org/downloads/", 4106 | "license": [ 4107 | "MIT" 4108 | ], 4109 | "authors": [ 4110 | { 4111 | "name": "Daniel Bachhuber", 4112 | "email": "daniel@runcommand.io", 4113 | "homepage": "https://runcommand.io" 4114 | } 4115 | ], 4116 | "description": "Searches/replaces strings in the database.", 4117 | "homepage": "https://github.com/wp-cli/search-replace-command", 4118 | "support": { 4119 | "issues": "https://github.com/wp-cli/search-replace-command/issues", 4120 | "source": "https://github.com/wp-cli/search-replace-command/tree/v2.0.14" 4121 | }, 4122 | "time": "2021-07-26T17:10:59+00:00" 4123 | }, 4124 | { 4125 | "name": "wp-cli/server-command", 4126 | "version": "v2.0.8", 4127 | "source": { 4128 | "type": "git", 4129 | "url": "https://github.com/wp-cli/server-command.git", 4130 | "reference": "29976aef5c2bdf159b8700eab26bafc943f0be0c" 4131 | }, 4132 | "dist": { 4133 | "type": "zip", 4134 | "url": "https://api.github.com/repos/wp-cli/server-command/zipball/29976aef5c2bdf159b8700eab26bafc943f0be0c", 4135 | "reference": "29976aef5c2bdf159b8700eab26bafc943f0be0c", 4136 | "shasum": "" 4137 | }, 4138 | "require": { 4139 | "wp-cli/wp-cli": "^2.5" 4140 | }, 4141 | "require-dev": { 4142 | "wp-cli/wp-cli-tests": "^3.0.11" 4143 | }, 4144 | "type": "wp-cli-package", 4145 | "extra": { 4146 | "branch-alias": { 4147 | "dev-master": "2.x-dev" 4148 | }, 4149 | "bundled": true, 4150 | "commands": [ 4151 | "server" 4152 | ] 4153 | }, 4154 | "autoload": { 4155 | "psr-4": { 4156 | "": "src/" 4157 | }, 4158 | "files": [ 4159 | "server-command.php" 4160 | ] 4161 | }, 4162 | "notification-url": "https://packagist.org/downloads/", 4163 | "license": [ 4164 | "MIT" 4165 | ], 4166 | "authors": [ 4167 | { 4168 | "name": "Daniel Bachhuber", 4169 | "email": "daniel@runcommand.io", 4170 | "homepage": "https://runcommand.io" 4171 | } 4172 | ], 4173 | "description": "Launches PHP's built-in web server for a specific WordPress installation.", 4174 | "homepage": "https://github.com/wp-cli/server-command", 4175 | "support": { 4176 | "issues": "https://github.com/wp-cli/server-command/issues", 4177 | "source": "https://github.com/wp-cli/server-command/tree/v2.0.8" 4178 | }, 4179 | "time": "2021-05-10T10:26:08+00:00" 4180 | }, 4181 | { 4182 | "name": "wp-cli/shell-command", 4183 | "version": "v2.0.9", 4184 | "source": { 4185 | "type": "git", 4186 | "url": "https://github.com/wp-cli/shell-command.git", 4187 | "reference": "f27b34a87b515da646d2e7018a8abc1254416fec" 4188 | }, 4189 | "dist": { 4190 | "type": "zip", 4191 | "url": "https://api.github.com/repos/wp-cli/shell-command/zipball/f27b34a87b515da646d2e7018a8abc1254416fec", 4192 | "reference": "f27b34a87b515da646d2e7018a8abc1254416fec", 4193 | "shasum": "" 4194 | }, 4195 | "require": { 4196 | "wp-cli/wp-cli": "^2.5" 4197 | }, 4198 | "require-dev": { 4199 | "wp-cli/wp-cli-tests": "^3.0.11" 4200 | }, 4201 | "type": "wp-cli-package", 4202 | "extra": { 4203 | "branch-alias": { 4204 | "dev-master": "2.x-dev" 4205 | }, 4206 | "bundled": true, 4207 | "commands": [ 4208 | "shell" 4209 | ] 4210 | }, 4211 | "autoload": { 4212 | "psr-4": { 4213 | "": "src/", 4214 | "WP_CLI\\": "src/WP_CLI" 4215 | }, 4216 | "files": [ 4217 | "shell-command.php" 4218 | ] 4219 | }, 4220 | "notification-url": "https://packagist.org/downloads/", 4221 | "license": [ 4222 | "MIT" 4223 | ], 4224 | "authors": [ 4225 | { 4226 | "name": "Daniel Bachhuber", 4227 | "email": "daniel@runcommand.io", 4228 | "homepage": "https://runcommand.io" 4229 | } 4230 | ], 4231 | "description": "Opens an interactive PHP console for running and testing PHP code.", 4232 | "homepage": "https://github.com/wp-cli/shell-command", 4233 | "support": { 4234 | "issues": "https://github.com/wp-cli/shell-command/issues", 4235 | "source": "https://github.com/wp-cli/shell-command/tree/v2.0.9" 4236 | }, 4237 | "time": "2021-05-10T10:16:05+00:00" 4238 | }, 4239 | { 4240 | "name": "wp-cli/super-admin-command", 4241 | "version": "v2.0.7", 4242 | "source": { 4243 | "type": "git", 4244 | "url": "https://github.com/wp-cli/super-admin-command.git", 4245 | "reference": "ad4bd4e6b6a53afa4ba8664a6dd695be6feb692e" 4246 | }, 4247 | "dist": { 4248 | "type": "zip", 4249 | "url": "https://api.github.com/repos/wp-cli/super-admin-command/zipball/ad4bd4e6b6a53afa4ba8664a6dd695be6feb692e", 4250 | "reference": "ad4bd4e6b6a53afa4ba8664a6dd695be6feb692e", 4251 | "shasum": "" 4252 | }, 4253 | "require": { 4254 | "wp-cli/wp-cli": "^2.5" 4255 | }, 4256 | "require-dev": { 4257 | "wp-cli/entity-command": "^1.3 || ^2", 4258 | "wp-cli/wp-cli-tests": "^3.0.11" 4259 | }, 4260 | "type": "wp-cli-package", 4261 | "extra": { 4262 | "branch-alias": { 4263 | "dev-master": "2.x-dev" 4264 | }, 4265 | "bundled": true, 4266 | "commands": [ 4267 | "super-admin", 4268 | "super-admin add", 4269 | "super-admin list", 4270 | "super-admin remove" 4271 | ] 4272 | }, 4273 | "autoload": { 4274 | "psr-4": { 4275 | "": "src/" 4276 | }, 4277 | "files": [ 4278 | "super-admin-command.php" 4279 | ] 4280 | }, 4281 | "notification-url": "https://packagist.org/downloads/", 4282 | "license": [ 4283 | "MIT" 4284 | ], 4285 | "authors": [ 4286 | { 4287 | "name": "Daniel Bachhuber", 4288 | "email": "daniel@runcommand.io", 4289 | "homepage": "https://runcommand.io" 4290 | } 4291 | ], 4292 | "description": "Lists, adds, or removes super admin users on a multisite installation.", 4293 | "homepage": "https://github.com/wp-cli/super-admin-command", 4294 | "support": { 4295 | "issues": "https://github.com/wp-cli/super-admin-command/issues", 4296 | "source": "https://github.com/wp-cli/super-admin-command/tree/v2.0.7" 4297 | }, 4298 | "time": "2021-05-10T10:25:05+00:00" 4299 | }, 4300 | { 4301 | "name": "wp-cli/widget-command", 4302 | "version": "v2.1.5", 4303 | "source": { 4304 | "type": "git", 4305 | "url": "https://github.com/wp-cli/widget-command.git", 4306 | "reference": "5ffe7bc380a7b3cc2d96ac545fcbd8b1739b79d1" 4307 | }, 4308 | "dist": { 4309 | "type": "zip", 4310 | "url": "https://api.github.com/repos/wp-cli/widget-command/zipball/5ffe7bc380a7b3cc2d96ac545fcbd8b1739b79d1", 4311 | "reference": "5ffe7bc380a7b3cc2d96ac545fcbd8b1739b79d1", 4312 | "shasum": "" 4313 | }, 4314 | "require": { 4315 | "wp-cli/wp-cli": "^2.5" 4316 | }, 4317 | "require-dev": { 4318 | "wp-cli/extension-command": "^1.2 || ^2", 4319 | "wp-cli/wp-cli-tests": "^3.0.11" 4320 | }, 4321 | "type": "wp-cli-package", 4322 | "extra": { 4323 | "branch-alias": { 4324 | "dev-master": "2.x-dev" 4325 | }, 4326 | "bundled": true, 4327 | "commands": [ 4328 | "widget", 4329 | "widget add", 4330 | "widget deactivate", 4331 | "widget delete", 4332 | "widget list", 4333 | "widget move", 4334 | "widget reset", 4335 | "widget update", 4336 | "sidebar", 4337 | "sidebar list" 4338 | ] 4339 | }, 4340 | "autoload": { 4341 | "psr-4": { 4342 | "": "src/" 4343 | }, 4344 | "files": [ 4345 | "widget-command.php" 4346 | ] 4347 | }, 4348 | "notification-url": "https://packagist.org/downloads/", 4349 | "license": [ 4350 | "MIT" 4351 | ], 4352 | "authors": [ 4353 | { 4354 | "name": "Daniel Bachhuber", 4355 | "email": "daniel@runcommand.io", 4356 | "homepage": "https://runcommand.io" 4357 | } 4358 | ], 4359 | "description": "Adds, moves, and removes widgets; lists sidebars.", 4360 | "homepage": "https://github.com/wp-cli/widget-command", 4361 | "support": { 4362 | "issues": "https://github.com/wp-cli/widget-command/issues", 4363 | "source": "https://github.com/wp-cli/widget-command/tree/v2.1.5" 4364 | }, 4365 | "time": "2021-07-26T16:11:11+00:00" 4366 | }, 4367 | { 4368 | "name": "wp-cli/wp-cli", 4369 | "version": "v2.5.0", 4370 | "source": { 4371 | "type": "git", 4372 | "url": "https://github.com/wp-cli/wp-cli.git", 4373 | "reference": "0bcf0c54f4d35685211d435e25219cc7acbe6d48" 4374 | }, 4375 | "dist": { 4376 | "type": "zip", 4377 | "url": "https://api.github.com/repos/wp-cli/wp-cli/zipball/0bcf0c54f4d35685211d435e25219cc7acbe6d48", 4378 | "reference": "0bcf0c54f4d35685211d435e25219cc7acbe6d48", 4379 | "shasum": "" 4380 | }, 4381 | "require": { 4382 | "ext-curl": "*", 4383 | "mustache/mustache": "~2.13", 4384 | "php": "^5.6 || ^7.0 || ^8.0", 4385 | "rmccue/requests": "^1.8", 4386 | "symfony/finder": ">2.7", 4387 | "wp-cli/mustangostang-spyc": "^0.6.3", 4388 | "wp-cli/php-cli-tools": "~0.11.2" 4389 | }, 4390 | "require-dev": { 4391 | "roave/security-advisories": "dev-master", 4392 | "wp-cli/db-command": "^1.3 || ^2", 4393 | "wp-cli/entity-command": "^1.2 || ^2", 4394 | "wp-cli/extension-command": "^1.1 || ^2", 4395 | "wp-cli/package-command": "^1 || ^2", 4396 | "wp-cli/wp-cli-tests": "^3.0.7" 4397 | }, 4398 | "suggest": { 4399 | "ext-readline": "Include for a better --prompt implementation", 4400 | "ext-zip": "Needed to support extraction of ZIP archives when doing downloads or updates" 4401 | }, 4402 | "bin": [ 4403 | "bin/wp", 4404 | "bin/wp.bat" 4405 | ], 4406 | "type": "library", 4407 | "extra": { 4408 | "branch-alias": { 4409 | "dev-master": "2.5.x-dev" 4410 | } 4411 | }, 4412 | "autoload": { 4413 | "psr-0": { 4414 | "WP_CLI\\": "php/" 4415 | }, 4416 | "classmap": [ 4417 | "php/class-wp-cli.php", 4418 | "php/class-wp-cli-command.php" 4419 | ] 4420 | }, 4421 | "notification-url": "https://packagist.org/downloads/", 4422 | "license": [ 4423 | "MIT" 4424 | ], 4425 | "description": "WP-CLI framework", 4426 | "homepage": "https://wp-cli.org", 4427 | "keywords": [ 4428 | "cli", 4429 | "wordpress" 4430 | ], 4431 | "support": { 4432 | "docs": "https://make.wordpress.org/cli/handbook/", 4433 | "issues": "https://github.com/wp-cli/wp-cli/issues", 4434 | "source": "https://github.com/wp-cli/wp-cli" 4435 | }, 4436 | "time": "2021-05-14T13:44:51+00:00" 4437 | }, 4438 | { 4439 | "name": "wp-cli/wp-cli-bundle", 4440 | "version": "v2.5.0", 4441 | "source": { 4442 | "type": "git", 4443 | "url": "https://github.com/wp-cli/wp-cli-bundle.git", 4444 | "reference": "e5bd3fbfd4f1da3b41444091906cbda0f898d852" 4445 | }, 4446 | "dist": { 4447 | "type": "zip", 4448 | "url": "https://api.github.com/repos/wp-cli/wp-cli-bundle/zipball/e5bd3fbfd4f1da3b41444091906cbda0f898d852", 4449 | "reference": "e5bd3fbfd4f1da3b41444091906cbda0f898d852", 4450 | "shasum": "" 4451 | }, 4452 | "require": { 4453 | "composer/composer": ">=1.5.6 <1.7.0 || ^1.7.1 || ^2.0.0", 4454 | "php": ">=5.6", 4455 | "wp-cli/cache-command": "^2", 4456 | "wp-cli/checksum-command": "^2.1", 4457 | "wp-cli/config-command": "^2.1", 4458 | "wp-cli/core-command": "^2.1", 4459 | "wp-cli/cron-command": "^2", 4460 | "wp-cli/db-command": "^2", 4461 | "wp-cli/embed-command": "^2", 4462 | "wp-cli/entity-command": "^2", 4463 | "wp-cli/eval-command": "^2", 4464 | "wp-cli/export-command": "^2", 4465 | "wp-cli/extension-command": "^2.1", 4466 | "wp-cli/i18n-command": "^2", 4467 | "wp-cli/import-command": "^2", 4468 | "wp-cli/language-command": "^2", 4469 | "wp-cli/maintenance-mode-command": "^2", 4470 | "wp-cli/media-command": "^2", 4471 | "wp-cli/package-command": "^2.1", 4472 | "wp-cli/rewrite-command": "^2", 4473 | "wp-cli/role-command": "^2", 4474 | "wp-cli/scaffold-command": "^2", 4475 | "wp-cli/search-replace-command": "^2", 4476 | "wp-cli/server-command": "^2", 4477 | "wp-cli/shell-command": "^2", 4478 | "wp-cli/super-admin-command": "^2", 4479 | "wp-cli/widget-command": "^2", 4480 | "wp-cli/wp-cli": "^2.5" 4481 | }, 4482 | "require-dev": { 4483 | "roave/security-advisories": "dev-master", 4484 | "wp-cli/wp-cli-tests": "^3.0.7" 4485 | }, 4486 | "suggest": { 4487 | "psy/psysh": "Enhanced `wp shell` functionality" 4488 | }, 4489 | "type": "library", 4490 | "extra": { 4491 | "branch-alias": { 4492 | "dev-master": "2.5.x-dev" 4493 | } 4494 | }, 4495 | "notification-url": "https://packagist.org/downloads/", 4496 | "license": [ 4497 | "MIT" 4498 | ], 4499 | "description": "WP-CLI bundle package with default commands.", 4500 | "homepage": "https://wp-cli.org", 4501 | "keywords": [ 4502 | "cli", 4503 | "wordpress" 4504 | ], 4505 | "support": { 4506 | "docs": "https://make.wordpress.org/cli/handbook/", 4507 | "issues": "https://github.com/wp-cli/wp-cli-bundle/issues", 4508 | "source": "https://github.com/wp-cli/wp-cli-bundle" 4509 | }, 4510 | "time": "2021-05-14T16:34:31+00:00" 4511 | }, 4512 | { 4513 | "name": "wp-cli/wp-config-transformer", 4514 | "version": "v1.2.8", 4515 | "source": { 4516 | "type": "git", 4517 | "url": "https://github.com/wp-cli/wp-config-transformer.git", 4518 | "reference": "0bb2b9162c38ca72370380aea11dc06e431e13a5" 4519 | }, 4520 | "dist": { 4521 | "type": "zip", 4522 | "url": "https://api.github.com/repos/wp-cli/wp-config-transformer/zipball/0bb2b9162c38ca72370380aea11dc06e431e13a5", 4523 | "reference": "0bb2b9162c38ca72370380aea11dc06e431e13a5", 4524 | "shasum": "" 4525 | }, 4526 | "require": { 4527 | "php": ">=5.3.29" 4528 | }, 4529 | "require-dev": { 4530 | "composer/composer": ">=1.5.6 <1.7.0 || ^1.7.1 || ^2.0.0", 4531 | "phpunit/phpunit": "^6.5.5 || ^7.0.0", 4532 | "wp-coding-standards/wpcs": "^0.14.0 || ^1.0.0 || ^2.0.0" 4533 | }, 4534 | "type": "library", 4535 | "autoload": { 4536 | "files": [ 4537 | "src/WPConfigTransformer.php" 4538 | ] 4539 | }, 4540 | "notification-url": "https://packagist.org/downloads/", 4541 | "license": [ 4542 | "MIT" 4543 | ], 4544 | "authors": [ 4545 | { 4546 | "name": "Frankie Jarrett", 4547 | "email": "fjarrett@gmail.com" 4548 | } 4549 | ], 4550 | "description": "Programmatically edit a wp-config.php file.", 4551 | "support": { 4552 | "issues": "https://github.com/wp-cli/wp-config-transformer/issues", 4553 | "source": "https://github.com/wp-cli/wp-config-transformer/tree/v1.2.8" 4554 | }, 4555 | "time": "2020-11-12T08:08:10+00:00" 4556 | }, 4557 | { 4558 | "name": "wp-coding-standards/wpcs", 4559 | "version": "2.3.0", 4560 | "source": { 4561 | "type": "git", 4562 | "url": "https://github.com/WordPress/WordPress-Coding-Standards.git", 4563 | "reference": "7da1894633f168fe244afc6de00d141f27517b62" 4564 | }, 4565 | "dist": { 4566 | "type": "zip", 4567 | "url": "https://api.github.com/repos/WordPress/WordPress-Coding-Standards/zipball/7da1894633f168fe244afc6de00d141f27517b62", 4568 | "reference": "7da1894633f168fe244afc6de00d141f27517b62", 4569 | "shasum": "" 4570 | }, 4571 | "require": { 4572 | "php": ">=5.4", 4573 | "squizlabs/php_codesniffer": "^3.3.1" 4574 | }, 4575 | "require-dev": { 4576 | "dealerdirect/phpcodesniffer-composer-installer": "^0.5 || ^0.6", 4577 | "phpcompatibility/php-compatibility": "^9.0", 4578 | "phpcsstandards/phpcsdevtools": "^1.0", 4579 | "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0" 4580 | }, 4581 | "suggest": { 4582 | "dealerdirect/phpcodesniffer-composer-installer": "^0.6 || This Composer plugin will sort out the PHPCS 'installed_paths' automatically." 4583 | }, 4584 | "type": "phpcodesniffer-standard", 4585 | "notification-url": "https://packagist.org/downloads/", 4586 | "license": [ 4587 | "MIT" 4588 | ], 4589 | "authors": [ 4590 | { 4591 | "name": "Contributors", 4592 | "homepage": "https://github.com/WordPress/WordPress-Coding-Standards/graphs/contributors" 4593 | } 4594 | ], 4595 | "description": "PHP_CodeSniffer rules (sniffs) to enforce WordPress coding conventions", 4596 | "keywords": [ 4597 | "phpcs", 4598 | "standards", 4599 | "wordpress" 4600 | ], 4601 | "support": { 4602 | "issues": "https://github.com/WordPress/WordPress-Coding-Standards/issues", 4603 | "source": "https://github.com/WordPress/WordPress-Coding-Standards", 4604 | "wiki": "https://github.com/WordPress/WordPress-Coding-Standards/wiki" 4605 | }, 4606 | "time": "2020-05-13T23:57:56+00:00" 4607 | } 4608 | ], 4609 | "aliases": [], 4610 | "minimum-stability": "stable", 4611 | "stability-flags": [], 4612 | "prefer-stable": false, 4613 | "prefer-lowest": false, 4614 | "platform": [], 4615 | "platform-dev": [], 4616 | "plugin-api-version": "2.1.0" 4617 | } 4618 | --------------------------------------------------------------------------------