From 7e9f046dc99dc5fd853ad0494a6e8f6f5be3221e Mon Sep 17 00:00:00 2001 From: Yonas Fesehatsion Date: Wed, 9 Jun 2021 10:49:03 -0400 Subject: [PATCH] v4.2.2 --- composer.json | 2 +- composer.lock | 4 +- vendor/composer/ClassLoader.php | 40 +- vendor/composer/autoload_classmap.php | 1 - vendor/composer/autoload_real.php | 6 +- vendor/composer/autoload_static.php | 1 - vendor/composer/installed.json | 5461 +++++++++++----------- wp-content/themes/guny/package-lock.json | 2 +- wp-content/themes/guny/package.json | 2 +- 9 files changed, 2707 insertions(+), 2812 deletions(-) diff --git a/composer.json b/composer.json index 71377c277..402c03c23 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "nyco/growingupnyc", "description": "Resources for families to learn about City programs, services, and activities provided by the government and community partners.", - "version": "2.4.4", + "version": "4.2.2", "homepage": "https://growingupnyc.cityofnewyork.us", "authors": [ { diff --git a/composer.lock b/composer.lock index ae8c99987..dbf3a4b6c 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "a4abad2d64f3fbd4c18c4d2d26b485bd", + "content-hash": "ee42c82472c678d44658fdf42a5a2db9", "packages": [ { "name": "altorouter/altorouter", @@ -2601,5 +2601,5 @@ "prefer-lowest": false, "platform": [], "platform-dev": [], - "plugin-api-version": "2.0.0" + "plugin-api-version": "1.1.0" } diff --git a/vendor/composer/ClassLoader.php b/vendor/composer/ClassLoader.php index 247294d66..fce8549f0 100644 --- a/vendor/composer/ClassLoader.php +++ b/vendor/composer/ClassLoader.php @@ -37,13 +37,11 @@ * * @author Fabien Potencier * @author Jordi Boggiano - * @see https://www.php-fig.org/psr/psr-0/ - * @see https://www.php-fig.org/psr/psr-4/ + * @see http://www.php-fig.org/psr/psr-0/ + * @see http://www.php-fig.org/psr/psr-4/ */ class ClassLoader { - private $vendorDir; - // PSR-4 private $prefixLengthsPsr4 = array(); private $prefixDirsPsr4 = array(); @@ -59,17 +57,10 @@ class ClassLoader private $missingClasses = array(); private $apcuPrefix; - private static $registeredLoaders = array(); - - public function __construct($vendorDir = null) - { - $this->vendorDir = $vendorDir; - } - public function getPrefixes() { if (!empty($this->prefixesPsr0)) { - return call_user_func_array('array_merge', array_values($this->prefixesPsr0)); + return call_user_func_array('array_merge', $this->prefixesPsr0); } return array(); @@ -309,17 +300,6 @@ public function getApcuPrefix() public function register($prepend = false) { spl_autoload_register(array($this, 'loadClass'), true, $prepend); - - if (null === $this->vendorDir) { - return; - } - - if ($prepend) { - self::$registeredLoaders = array($this->vendorDir => $this) + self::$registeredLoaders; - } else { - unset(self::$registeredLoaders[$this->vendorDir]); - self::$registeredLoaders[$this->vendorDir] = $this; - } } /** @@ -328,10 +308,6 @@ public function register($prepend = false) public function unregister() { spl_autoload_unregister(array($this, 'loadClass')); - - if (null !== $this->vendorDir) { - unset(self::$registeredLoaders[$this->vendorDir]); - } } /** @@ -391,16 +367,6 @@ public function findFile($class) return $file; } - /** - * Returns the currently registered loaders indexed by their corresponding vendor directories. - * - * @return self[] - */ - public static function getRegisteredLoaders() - { - return self::$registeredLoaders; - } - private function findFileWithExtension($class, $ext) { // PSR-4 lookup diff --git a/vendor/composer/autoload_classmap.php b/vendor/composer/autoload_classmap.php index 72ed6a3f7..ac9ee045e 100644 --- a/vendor/composer/autoload_classmap.php +++ b/vendor/composer/autoload_classmap.php @@ -8,7 +8,6 @@ return array( 'AltoRouter' => $vendorDir . '/altorouter/altorouter/AltoRouter.php', 'Attribute' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Attribute.php', - 'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php', 'Stringable' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Stringable.php', 'UnhandledMatchError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php', 'ValueError' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/ValueError.php', diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php index cf69e737d..5ca841f5f 100644 --- a/vendor/composer/autoload_real.php +++ b/vendor/composer/autoload_real.php @@ -22,15 +22,13 @@ public static function getLoader() return self::$loader; } - require __DIR__ . '/platform_check.php'; - spl_autoload_register(array('ComposerAutoloaderInit3c0c47bdd559dc86d448f15792196e85', 'loadClassLoader'), true, true); - self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__))); + self::$loader = $loader = new \Composer\Autoload\ClassLoader(); spl_autoload_unregister(array('ComposerAutoloaderInit3c0c47bdd559dc86d448f15792196e85', 'loadClassLoader')); $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); if ($useStaticLoader) { - require __DIR__ . '/autoload_static.php'; + require_once __DIR__ . '/autoload_static.php'; call_user_func(\Composer\Autoload\ComposerStaticInit3c0c47bdd559dc86d448f15792196e85::getInitializer($loader)); } else { diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index a7c76a6e8..8d762efea 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -228,7 +228,6 @@ class ComposerStaticInit3c0c47bdd559dc86d448f15792196e85 public static $classMap = array ( 'AltoRouter' => __DIR__ . '/..' . '/altorouter/altorouter/AltoRouter.php', 'Attribute' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Attribute.php', - 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php', 'Stringable' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Stringable.php', 'UnhandledMatchError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php', 'ValueError' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/ValueError.php', diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index a0b868afb..5a944d3d2 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -1,2770 +1,2703 @@ -{ - "packages": [ - { - "name": "altorouter/altorouter", - "version": "v1.2.0", - "version_normalized": "1.2.0.0", - "source": { - "type": "git", - "url": "https://github.com/dannyvankooten/AltoRouter.git", - "reference": "39c50092470128c12284d332bb57f306bb5b58e4" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/dannyvankooten/AltoRouter/zipball/39c50092470128c12284d332bb57f306bb5b58e4", - "reference": "39c50092470128c12284d332bb57f306bb5b58e4", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "require-dev": { - "codeclimate/php-test-reporter": "dev-master", - "phpunit/phpunit": "4.5.*" - }, - "time": "2015-11-30T00:47:43+00:00", - "type": "library", - "installation-source": "dist", - "autoload": { - "classmap": [ - "AltoRouter.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Danny van Kooten", - "email": "dannyvankooten@gmail.com", - "homepage": "http://dannyvankooten.com/" - }, - { - "name": "Koen Punt", - "homepage": "https://github.com/koenpunt" - }, - { - "name": "niahoo", - "homepage": "https://github.com/niahoo" - } - ], - "description": "A lightning fast router for PHP", - "homepage": "https://github.com/dannyvankooten/AltoRouter", - "keywords": [ - "lightweight", - "router", - "routing" - ], - "install-path": "../altorouter/altorouter" - }, - { - "name": "asm89/twig-cache-extension", - "version": "1.4.0", - "version_normalized": "1.4.0.0", - "source": { - "type": "git", - "url": "https://github.com/asm89/twig-cache-extension.git", - "reference": "13787226956ec766f4770722082288097aebaaf3" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/asm89/twig-cache-extension/zipball/13787226956ec766f4770722082288097aebaaf3", - "reference": "13787226956ec766f4770722082288097aebaaf3", - "shasum": "" - }, - "require": { - "php": ">=5.3.2", - "twig/twig": "^1.0|^2.0" - }, - "require-dev": { - "doctrine/cache": "~1.0", - "phpunit/phpunit": "^5.0 || ^4.8.10" - }, - "suggest": { - "psr/cache-implementation": "To make use of PSR-6 cache implementation via PsrCacheAdapter." - }, - "time": "2020-01-01T20:47:37+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.4-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "": "lib/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Alexander", - "email": "iam.asm89@gmail.com" - } - ], - "description": "Cache fragments of templates directly within Twig.", - "homepage": "https://github.com/asm89/twig-cache-extension", - "keywords": [ - "cache", - "extension", - "twig" - ], - "abandoned": "twig/cache-extension", - "install-path": "../asm89/twig-cache-extension" - }, - { - "name": "aws/aws-sdk-php", - "version": "3.183.11", - "version_normalized": "3.183.11.0", - "source": { - "type": "git", - "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "f42dcf893227842aca11e8ea19f7b2123cf3244b" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/f42dcf893227842aca11e8ea19f7b2123cf3244b", - "reference": "f42dcf893227842aca11e8ea19f7b2123cf3244b", - "shasum": "" - }, - "require": { - "ext-json": "*", - "ext-pcre": "*", - "ext-simplexml": "*", - "guzzlehttp/guzzle": "^5.3.3|^6.2.1|^7.0", - "guzzlehttp/promises": "^1.4.0", - "guzzlehttp/psr7": "^1.7.0", - "mtdowling/jmespath.php": "^2.6", - "php": ">=5.5" - }, - "require-dev": { - "andrewsville/php-token-reflection": "^1.4", - "aws/aws-php-sns-message-validator": "~1.0", - "behat/behat": "~3.0", - "doctrine/cache": "~1.4", - "ext-dom": "*", - "ext-openssl": "*", - "ext-pcntl": "*", - "ext-sockets": "*", - "nette/neon": "^2.3", - "paragonie/random_compat": ">= 2", - "phpunit/phpunit": "^4.8.35|^5.4.3", - "psr/cache": "^1.0", - "psr/simple-cache": "^1.0", - "sebastian/comparator": "^1.2.3" - }, - "suggest": { - "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications", - "doctrine/cache": "To use the DoctrineCacheAdapter", - "ext-curl": "To send requests using cURL", - "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages", - "ext-sockets": "To use client-side monitoring" - }, - "time": "2021-06-02T18:14:10+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.0-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Aws\\": "src/" - }, - "files": [ - "src/functions.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "authors": [ - { - "name": "Amazon Web Services", - "homepage": "http://aws.amazon.com" - } - ], - "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project", - "homepage": "http://aws.amazon.com/sdkforphp", - "keywords": [ - "amazon", - "aws", - "cloud", - "dynamodb", - "ec2", - "glacier", - "s3", - "sdk" - ], - "support": { - "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80", - "issues": "https://github.com/aws/aws-sdk-php/issues", - "source": "https://github.com/aws/aws-sdk-php/tree/3.183.11" - }, - "install-path": "../aws/aws-sdk-php" - }, - { - "name": "composer/installers", - "version": "v1.9.0", - "version_normalized": "1.9.0.0", - "source": { - "type": "git", - "url": "https://github.com/composer/installers.git", - "reference": "b93bcf0fa1fccb0b7d176b0967d969691cd74cca" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/composer/installers/zipball/b93bcf0fa1fccb0b7d176b0967d969691cd74cca", - "reference": "b93bcf0fa1fccb0b7d176b0967d969691cd74cca", - "shasum": "" - }, - "require": { - "composer-plugin-api": "^1.0 || ^2.0" - }, - "replace": { - "roundcube/plugin-installer": "*", - "shama/baton": "*" - }, - "require-dev": { - "composer/composer": "1.6.* || 2.0.*@dev", - "composer/semver": "1.0.* || 2.0.*@dev", - "phpunit/phpunit": "^4.8.36", - "sebastian/comparator": "^1.2.4", - "symfony/process": "^2.3" - }, - "time": "2020-04-07T06:57:05+00:00", - "type": "composer-plugin", - "extra": { - "class": "Composer\\Installers\\Plugin", - "branch-alias": { - "dev-master": "1.0-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Composer\\Installers\\": "src/Composer/Installers" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Kyle Robinson Young", - "email": "kyle@dontkry.com", - "homepage": "https://github.com/shama" - } - ], - "description": "A multi-framework Composer library installer", - "homepage": "https://composer.github.io/installers/", - "keywords": [ - "Craft", - "Dolibarr", - "Eliasis", - "Hurad", - "ImageCMS", - "Kanboard", - "Lan Management System", - "MODX Evo", - "MantisBT", - "Mautic", - "Maya", - "OXID", - "Plentymarkets", - "Porto", - "RadPHP", - "SMF", - "Thelia", - "Whmcs", - "WolfCMS", - "agl", - "aimeos", - "annotatecms", - "attogram", - "bitrix", - "cakephp", - "chef", - "cockpit", - "codeigniter", - "concrete5", - "croogo", - "dokuwiki", - "drupal", - "eZ Platform", - "elgg", - "expressionengine", - "fuelphp", - "grav", - "installer", - "itop", - "joomla", - "known", - "kohana", - "laravel", - "lavalite", - "lithium", - "magento", - "majima", - "mako", - "mediawiki", - "modulework", - "modx", - "moodle", - "osclass", - "phpbb", - "piwik", - "ppi", - "puppet", - "pxcms", - "reindex", - "roundcube", - "shopware", - "silverstripe", - "sydes", - "sylius", - "symfony", - "typo3", - "wordpress", - "yawik", - "zend", - "zikula" - ], - "install-path": "./installers" - }, - { - "name": "doctrine/inflector", - "version": "1.4.3", - "version_normalized": "1.4.3.0", - "source": { - "type": "git", - "url": "https://github.com/doctrine/inflector.git", - "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/doctrine/inflector/zipball/4650c8b30c753a76bf44fb2ed00117d6f367490c", - "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c", - "shasum": "" - }, - "require": { - "php": "^7.2 || ^8.0" - }, - "require-dev": { - "doctrine/coding-standard": "^7.0", - "phpstan/phpstan": "^0.11", - "phpstan/phpstan-phpunit": "^0.11", - "phpstan/phpstan-strict-rules": "^0.11", - "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0" - }, - "time": "2020-05-29T07:19:59+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.0.x-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector", - "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, - { - "name": "Benjamin Eberlei", - "email": "kontakt@beberlei.de" - }, - { - "name": "Jonathan Wage", - "email": "jonwage@gmail.com" - }, - { - "name": "Johannes Schmitt", - "email": "schmittjoh@gmail.com" - } - ], - "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.", - "homepage": "https://www.doctrine-project.org/projects/inflector.html", - "keywords": [ - "inflection", - "inflector", - "lowercase", - "manipulation", - "php", - "plural", - "singular", - "strings", - "uppercase", - "words" - ], - "install-path": "../doctrine/inflector" - }, - { - "name": "filp/whoops", - "version": "2.9.0", - "version_normalized": "2.9.0.0", - "source": { - "type": "git", - "url": "https://github.com/filp/whoops.git", - "reference": "2ec31f3adc54c71a59c5e3c2143d7a0e2f8899f8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/filp/whoops/zipball/2ec31f3adc54c71a59c5e3c2143d7a0e2f8899f8", - "reference": "2ec31f3adc54c71a59c5e3c2143d7a0e2f8899f8", - "shasum": "" - }, - "require": { - "php": "^5.5.9 || ^7.0 || ^8.0", - "psr/log": "^1.0.1" - }, - "require-dev": { - "mockery/mockery": "^0.9 || ^1.0", - "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3", - "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0" - }, - "suggest": { - "symfony/var-dumper": "Pretty print complex values better with var-dumper available", - "whoops/soap": "Formats errors as SOAP responses" - }, - "time": "2020-10-20T12:00:00+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.7-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Whoops\\": "src/Whoops/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Filipe Dobreira", - "homepage": "https://github.com/filp", - "role": "Developer" - } - ], - "description": "php error handling for cool kids", - "homepage": "https://filp.github.io/whoops/", - "keywords": [ - "error", - "exception", - "handling", - "library", - "throwable", - "whoops" - ], - "install-path": "../filp/whoops" - }, - { - "name": "guzzlehttp/guzzle", - "version": "7.3.0", - "version_normalized": "7.3.0.0", - "source": { - "type": "git", - "url": "https://github.com/guzzle/guzzle.git", - "reference": "7008573787b430c1c1f650e3722d9bba59967628" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7008573787b430c1c1f650e3722d9bba59967628", - "reference": "7008573787b430c1c1f650e3722d9bba59967628", - "shasum": "" - }, - "require": { - "ext-json": "*", - "guzzlehttp/promises": "^1.4", - "guzzlehttp/psr7": "^1.7 || ^2.0", - "php": "^7.2.5 || ^8.0", - "psr/http-client": "^1.0" - }, - "provide": { - "psr/http-client-implementation": "1.0" - }, - "require-dev": { - "bamarni/composer-bin-plugin": "^1.4.1", - "ext-curl": "*", - "php-http/client-integration-tests": "^3.0", - "phpunit/phpunit": "^8.5.5 || ^9.3.5", - "psr/log": "^1.1" - }, - "suggest": { - "ext-curl": "Required for CURL handler support", - "ext-intl": "Required for Internationalized Domain Name (IDN) support", - "psr/log": "Required for using the Log middleware" - }, - "time": "2021-03-23T11:33:13+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "7.3-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "GuzzleHttp\\": "src/" - }, - "files": [ - "src/functions_include.php" +[ + { + "name": "altorouter/altorouter", + "version": "v1.2.0", + "version_normalized": "1.2.0.0", + "source": { + "type": "git", + "url": "https://github.com/dannyvankooten/AltoRouter.git", + "reference": "39c50092470128c12284d332bb57f306bb5b58e4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dannyvankooten/AltoRouter/zipball/39c50092470128c12284d332bb57f306bb5b58e4", + "reference": "39c50092470128c12284d332bb57f306bb5b58e4", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "require-dev": { + "codeclimate/php-test-reporter": "dev-master", + "phpunit/phpunit": "4.5.*" + }, + "time": "2015-11-30T00:47:43+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "classmap": [ + "AltoRouter.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Danny van Kooten", + "email": "dannyvankooten@gmail.com", + "homepage": "http://dannyvankooten.com/" + }, + { + "name": "Koen Punt", + "homepage": "https://github.com/koenpunt" + }, + { + "name": "niahoo", + "homepage": "https://github.com/niahoo" + } + ], + "description": "A lightning fast router for PHP", + "homepage": "https://github.com/dannyvankooten/AltoRouter", + "keywords": [ + "lightweight", + "router", + "routing" + ] + }, + { + "name": "asm89/twig-cache-extension", + "version": "1.4.0", + "version_normalized": "1.4.0.0", + "source": { + "type": "git", + "url": "https://github.com/asm89/twig-cache-extension.git", + "reference": "13787226956ec766f4770722082288097aebaaf3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/asm89/twig-cache-extension/zipball/13787226956ec766f4770722082288097aebaaf3", + "reference": "13787226956ec766f4770722082288097aebaaf3", + "shasum": "" + }, + "require": { + "php": ">=5.3.2", + "twig/twig": "^1.0|^2.0" + }, + "require-dev": { + "doctrine/cache": "~1.0", + "phpunit/phpunit": "^5.0 || ^4.8.10" + }, + "suggest": { + "psr/cache-implementation": "To make use of PSR-6 cache implementation via PsrCacheAdapter." + }, + "time": "2020-01-01T20:47:37+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.4-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "": "lib/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Alexander", + "email": "iam.asm89@gmail.com" + } + ], + "description": "Cache fragments of templates directly within Twig.", + "homepage": "https://github.com/asm89/twig-cache-extension", + "keywords": [ + "cache", + "extension", + "twig" + ], + "abandoned": "twig/cache-extension" + }, + { + "name": "aws/aws-sdk-php", + "version": "3.183.11", + "version_normalized": "3.183.11.0", + "source": { + "type": "git", + "url": "https://github.com/aws/aws-sdk-php.git", + "reference": "f42dcf893227842aca11e8ea19f7b2123cf3244b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/f42dcf893227842aca11e8ea19f7b2123cf3244b", + "reference": "f42dcf893227842aca11e8ea19f7b2123cf3244b", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-pcre": "*", + "ext-simplexml": "*", + "guzzlehttp/guzzle": "^5.3.3|^6.2.1|^7.0", + "guzzlehttp/promises": "^1.4.0", + "guzzlehttp/psr7": "^1.7.0", + "mtdowling/jmespath.php": "^2.6", + "php": ">=5.5" + }, + "require-dev": { + "andrewsville/php-token-reflection": "^1.4", + "aws/aws-php-sns-message-validator": "~1.0", + "behat/behat": "~3.0", + "doctrine/cache": "~1.4", + "ext-dom": "*", + "ext-openssl": "*", + "ext-pcntl": "*", + "ext-sockets": "*", + "nette/neon": "^2.3", + "paragonie/random_compat": ">= 2", + "phpunit/phpunit": "^4.8.35|^5.4.3", + "psr/cache": "^1.0", + "psr/simple-cache": "^1.0", + "sebastian/comparator": "^1.2.3" + }, + "suggest": { + "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications", + "doctrine/cache": "To use the DoctrineCacheAdapter", + "ext-curl": "To send requests using cURL", + "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages", + "ext-sockets": "To use client-side monitoring" + }, + "time": "2021-06-02T18:14:10+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Aws\\": "src/" + }, + "files": [ + "src/functions.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Amazon Web Services", + "homepage": "http://aws.amazon.com" + } + ], + "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project", + "homepage": "http://aws.amazon.com/sdkforphp", + "keywords": [ + "amazon", + "aws", + "cloud", + "dynamodb", + "ec2", + "glacier", + "s3", + "sdk" + ], + "support": { + "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80", + "issues": "https://github.com/aws/aws-sdk-php/issues", + "source": "https://github.com/aws/aws-sdk-php/tree/3.183.11" + } + }, + { + "name": "composer/installers", + "version": "v1.9.0", + "version_normalized": "1.9.0.0", + "source": { + "type": "git", + "url": "https://github.com/composer/installers.git", + "reference": "b93bcf0fa1fccb0b7d176b0967d969691cd74cca" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/installers/zipball/b93bcf0fa1fccb0b7d176b0967d969691cd74cca", + "reference": "b93bcf0fa1fccb0b7d176b0967d969691cd74cca", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^1.0 || ^2.0" + }, + "replace": { + "roundcube/plugin-installer": "*", + "shama/baton": "*" + }, + "require-dev": { + "composer/composer": "1.6.* || 2.0.*@dev", + "composer/semver": "1.0.* || 2.0.*@dev", + "phpunit/phpunit": "^4.8.36", + "sebastian/comparator": "^1.2.4", + "symfony/process": "^2.3" + }, + "time": "2020-04-07T06:57:05+00:00", + "type": "composer-plugin", + "extra": { + "class": "Composer\\Installers\\Plugin", + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Composer\\Installers\\": "src/Composer/Installers" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Kyle Robinson Young", + "email": "kyle@dontkry.com", + "homepage": "https://github.com/shama" + } + ], + "description": "A multi-framework Composer library installer", + "homepage": "https://composer.github.io/installers/", + "keywords": [ + "Craft", + "Dolibarr", + "Eliasis", + "Hurad", + "ImageCMS", + "Kanboard", + "Lan Management System", + "MODX Evo", + "MantisBT", + "Mautic", + "Maya", + "OXID", + "Plentymarkets", + "Porto", + "RadPHP", + "SMF", + "Thelia", + "Whmcs", + "WolfCMS", + "agl", + "aimeos", + "annotatecms", + "attogram", + "bitrix", + "cakephp", + "chef", + "cockpit", + "codeigniter", + "concrete5", + "croogo", + "dokuwiki", + "drupal", + "eZ Platform", + "elgg", + "expressionengine", + "fuelphp", + "grav", + "installer", + "itop", + "joomla", + "known", + "kohana", + "laravel", + "lavalite", + "lithium", + "magento", + "majima", + "mako", + "mediawiki", + "modulework", + "modx", + "moodle", + "osclass", + "phpbb", + "piwik", + "ppi", + "puppet", + "pxcms", + "reindex", + "roundcube", + "shopware", + "silverstripe", + "sydes", + "sylius", + "symfony", + "typo3", + "wordpress", + "yawik", + "zend", + "zikula" + ] + }, + { + "name": "doctrine/inflector", + "version": "1.4.3", + "version_normalized": "1.4.3.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/inflector.git", + "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/4650c8b30c753a76bf44fb2ed00117d6f367490c", + "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^7.0", + "phpstan/phpstan": "^0.11", + "phpstan/phpstan-phpunit": "^0.11", + "phpstan/phpstan-strict-rules": "^0.11", + "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0" + }, + "time": "2020-05-29T07:19:59+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector", + "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.", + "homepage": "https://www.doctrine-project.org/projects/inflector.html", + "keywords": [ + "inflection", + "inflector", + "lowercase", + "manipulation", + "php", + "plural", + "singular", + "strings", + "uppercase", + "words" + ] + }, + { + "name": "filp/whoops", + "version": "2.9.0", + "version_normalized": "2.9.0.0", + "source": { + "type": "git", + "url": "https://github.com/filp/whoops.git", + "reference": "2ec31f3adc54c71a59c5e3c2143d7a0e2f8899f8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/filp/whoops/zipball/2ec31f3adc54c71a59c5e3c2143d7a0e2f8899f8", + "reference": "2ec31f3adc54c71a59c5e3c2143d7a0e2f8899f8", + "shasum": "" + }, + "require": { + "php": "^5.5.9 || ^7.0 || ^8.0", + "psr/log": "^1.0.1" + }, + "require-dev": { + "mockery/mockery": "^0.9 || ^1.0", + "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3", + "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0" + }, + "suggest": { + "symfony/var-dumper": "Pretty print complex values better with var-dumper available", + "whoops/soap": "Formats errors as SOAP responses" + }, + "time": "2020-10-20T12:00:00+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.7-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Whoops\\": "src/Whoops/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Filipe Dobreira", + "homepage": "https://github.com/filp", + "role": "Developer" + } + ], + "description": "php error handling for cool kids", + "homepage": "https://filp.github.io/whoops/", + "keywords": [ + "error", + "exception", + "handling", + "library", + "throwable", + "whoops" + ] + }, + { + "name": "guzzlehttp/guzzle", + "version": "7.3.0", + "version_normalized": "7.3.0.0", + "source": { + "type": "git", + "url": "https://github.com/guzzle/guzzle.git", + "reference": "7008573787b430c1c1f650e3722d9bba59967628" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7008573787b430c1c1f650e3722d9bba59967628", + "reference": "7008573787b430c1c1f650e3722d9bba59967628", + "shasum": "" + }, + "require": { + "ext-json": "*", + "guzzlehttp/promises": "^1.4", + "guzzlehttp/psr7": "^1.7 || ^2.0", + "php": "^7.2.5 || ^8.0", + "psr/http-client": "^1.0" + }, + "provide": { + "psr/http-client-implementation": "1.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.4.1", + "ext-curl": "*", + "php-http/client-integration-tests": "^3.0", + "phpunit/phpunit": "^8.5.5 || ^9.3.5", + "psr/log": "^1.1" + }, + "suggest": { + "ext-curl": "Required for CURL handler support", + "ext-intl": "Required for Internationalized Domain Name (IDN) support", + "psr/log": "Required for using the Log middleware" + }, + "time": "2021-03-23T11:33:13+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "7.3-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "GuzzleHttp\\": "src/" + }, + "files": [ + "src/functions_include.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://sagikazarmark.hu" + } + ], + "description": "Guzzle is a PHP HTTP client library", + "homepage": "http://guzzlephp.org/", + "keywords": [ + "client", + "curl", + "framework", + "http", + "http client", + "psr-18", + "psr-7", + "rest", + "web service" + ], + "support": { + "issues": "https://github.com/guzzle/guzzle/issues", + "source": "https://github.com/guzzle/guzzle/tree/7.3.0" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://github.com/alexeyshockov", + "type": "github" + }, + { + "url": "https://github.com/gmponos", + "type": "github" + } + ] + }, + { + "name": "guzzlehttp/promises", + "version": "1.4.1", + "version_normalized": "1.4.1.0", + "source": { + "type": "git", + "url": "https://github.com/guzzle/promises.git", + "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d", + "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d", + "shasum": "" + }, + "require": { + "php": ">=5.5" + }, + "require-dev": { + "symfony/phpunit-bridge": "^4.4 || ^5.1" + }, + "time": "2021-03-07T09:25:29+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.4-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "GuzzleHttp\\Promise\\": "src/" + }, + "files": [ + "src/functions_include.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + } + ], + "description": "Guzzle promises library", + "keywords": [ + "promise" + ], + "support": { + "issues": "https://github.com/guzzle/promises/issues", + "source": "https://github.com/guzzle/promises/tree/1.4.1" + } + }, + { + "name": "guzzlehttp/psr7", + "version": "1.8.2", + "version_normalized": "1.8.2.0", + "source": { + "type": "git", + "url": "https://github.com/guzzle/psr7.git", + "reference": "dc960a912984efb74d0a90222870c72c87f10c91" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/dc960a912984efb74d0a90222870c72c87f10c91", + "reference": "dc960a912984efb74d0a90222870c72c87f10c91", + "shasum": "" + }, + "require": { + "php": ">=5.4.0", + "psr/http-message": "~1.0", + "ralouphie/getallheaders": "^2.0.5 || ^3.0.0" + }, + "provide": { + "psr/http-message-implementation": "1.0" + }, + "require-dev": { + "ext-zlib": "*", + "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10" + }, + "suggest": { + "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" + }, + "time": "2021-04-26T09:17:50+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.7-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "GuzzleHttp\\Psr7\\": "src/" + }, + "files": [ + "src/functions_include.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "Tobias Schultze", + "homepage": "https://github.com/Tobion" + } + ], + "description": "PSR-7 message implementation that also provides common utility methods", + "keywords": [ + "http", + "message", + "psr-7", + "request", + "response", + "stream", + "uri", + "url" + ], + "support": { + "issues": "https://github.com/guzzle/psr7/issues", + "source": "https://github.com/guzzle/psr7/tree/1.8.2" + } + }, + { + "name": "illuminate/contracts", + "version": "v5.8.36", + "version_normalized": "5.8.36.0", + "source": { + "type": "git", + "url": "https://github.com/illuminate/contracts.git", + "reference": "00fc6afee788fa07c311b0650ad276585f8aef96" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/contracts/zipball/00fc6afee788fa07c311b0650ad276585f8aef96", + "reference": "00fc6afee788fa07c311b0650ad276585f8aef96", + "shasum": "" + }, + "require": { + "php": "^7.1.3", + "psr/container": "^1.0", + "psr/simple-cache": "^1.0" + }, + "time": "2019-07-30T13:57:21+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.8-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Illuminate\\Contracts\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Illuminate Contracts package.", + "homepage": "https://laravel.com" + }, + { + "name": "illuminate/encryption", + "version": "v5.8.36", + "version_normalized": "5.8.36.0", + "source": { + "type": "git", + "url": "https://github.com/illuminate/encryption.git", + "reference": "135c631bab0e0a8b9535b5750687e0a867c85193" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/encryption/zipball/135c631bab0e0a8b9535b5750687e0a867c85193", + "reference": "135c631bab0e0a8b9535b5750687e0a867c85193", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-mbstring": "*", + "ext-openssl": "*", + "illuminate/contracts": "5.8.*", + "illuminate/support": "5.8.*", + "php": "^7.1.3" + }, + "time": "2019-06-11T14:00:26+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.8-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Illuminate\\Encryption\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Illuminate Encryption package.", + "homepage": "https://laravel.com" + }, + { + "name": "illuminate/support", + "version": "v5.8.36", + "version_normalized": "5.8.36.0", + "source": { + "type": "git", + "url": "https://github.com/illuminate/support.git", + "reference": "df4af6a32908f1d89d74348624b57e3233eea247" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/illuminate/support/zipball/df4af6a32908f1d89d74348624b57e3233eea247", + "reference": "df4af6a32908f1d89d74348624b57e3233eea247", + "shasum": "" + }, + "require": { + "doctrine/inflector": "^1.1", + "ext-json": "*", + "ext-mbstring": "*", + "illuminate/contracts": "5.8.*", + "nesbot/carbon": "^1.26.3 || ^2.0", + "php": "^7.1.3" + }, + "conflict": { + "tightenco/collect": "<5.5.33" + }, + "suggest": { + "illuminate/filesystem": "Required to use the composer class (5.8.*).", + "moontoast/math": "Required to use ordered UUIDs (^1.1).", + "ramsey/uuid": "Required to use Str::uuid() (^3.7).", + "symfony/process": "Required to use the composer class (^4.2).", + "symfony/var-dumper": "Required to use the dd function (^4.2).", + "vlucas/phpdotenv": "Required to use the env helper (^3.3)." + }, + "time": "2019-12-12T14:16:47+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.8-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Illuminate\\Support\\": "" + }, + "files": [ + "helpers.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Taylor Otwell", + "email": "taylor@laravel.com" + } + ], + "description": "The Illuminate Support package.", + "homepage": "https://laravel.com" + }, + { + "name": "michelf/php-markdown", + "version": "1.9.0", + "version_normalized": "1.9.0.0", + "source": { + "type": "git", + "url": "https://github.com/michelf/php-markdown.git", + "reference": "c83178d49e372ca967d1a8c77ae4e051b3a3c75c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/michelf/php-markdown/zipball/c83178d49e372ca967d1a8c77ae4e051b3a3c75c", + "reference": "c83178d49e372ca967d1a8c77ae4e051b3a3c75c", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "require-dev": { + "phpunit/phpunit": ">=4.3 <5.8" + }, + "time": "2019-12-02T02:32:27+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Michelf\\": "Michelf/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Michel Fortin", + "email": "michel.fortin@michelf.ca", + "homepage": "https://michelf.ca/", + "role": "Developer" + }, + { + "name": "John Gruber", + "homepage": "https://daringfireball.net/" + } + ], + "description": "PHP Markdown", + "homepage": "https://michelf.ca/projects/php-markdown/", + "keywords": [ + "markdown" + ] + }, + { + "name": "mtdowling/jmespath.php", + "version": "2.6.0", + "version_normalized": "2.6.0.0", + "source": { + "type": "git", + "url": "https://github.com/jmespath/jmespath.php.git", + "reference": "42dae2cbd13154083ca6d70099692fef8ca84bfb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/42dae2cbd13154083ca6d70099692fef8ca84bfb", + "reference": "42dae2cbd13154083ca6d70099692fef8ca84bfb", + "shasum": "" + }, + "require": { + "php": "^5.4 || ^7.0 || ^8.0", + "symfony/polyfill-mbstring": "^1.17" + }, + "require-dev": { + "composer/xdebug-handler": "^1.4", + "phpunit/phpunit": "^4.8.36 || ^7.5.15" + }, + "time": "2020-07-31T21:01:56+00:00", + "bin": [ + "bin/jp.php" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.6-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "JmesPath\\": "src/" + }, + "files": [ + "src/JmesPath.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + } + ], + "description": "Declaratively specify how to extract elements from a JSON document", + "keywords": [ + "json", + "jsonpath" + ], + "support": { + "issues": "https://github.com/jmespath/jmespath.php/issues", + "source": "https://github.com/jmespath/jmespath.php/tree/2.6.0" + } + }, + { + "name": "mustangostang/spyc", + "version": "0.6.3", + "version_normalized": "0.6.3.0", + "source": { + "type": "git", + "url": "git@github.com:mustangostang/spyc.git", + "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/mustangostang/spyc/zipball/4627c838b16550b666d15aeae1e5289dd5b77da0", + "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0", + "shasum": "" + }, + "require": { + "php": ">=5.3.1" + }, + "require-dev": { + "phpunit/phpunit": "4.3.*@dev" + }, + "time": "2019-09-10T13:16:29+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "0.5.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "files": [ + "Spyc.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "mustangostang", + "email": "vlad.andersen@gmail.com" + } + ], + "description": "A simple YAML loader/dumper class for PHP", + "homepage": "https://github.com/mustangostang/spyc/", + "keywords": [ + "spyc", + "yaml", + "yml" + ] + }, + { + "name": "nesbot/carbon", + "version": "2.41.5", + "version_normalized": "2.41.5.0", + "source": { + "type": "git", + "url": "https://github.com/briannesbitt/Carbon.git", + "reference": "c4a9caf97cfc53adfc219043bcecf42bc663acee" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/c4a9caf97cfc53adfc219043bcecf42bc663acee", + "reference": "c4a9caf97cfc53adfc219043bcecf42bc663acee", + "shasum": "" + }, + "require": { + "ext-json": "*", + "php": "^7.1.8 || ^8.0", + "symfony/polyfill-mbstring": "^1.0", + "symfony/translation": "^3.4 || ^4.0 || ^5.0" + }, + "require-dev": { + "doctrine/orm": "^2.7", + "friendsofphp/php-cs-fixer": "^2.14 || ^3.0", + "kylekatarnls/multi-tester": "^2.0", + "phpmd/phpmd": "^2.9", + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^0.12.35", + "phpunit/phpunit": "^7.5 || ^8.0", + "squizlabs/php_codesniffer": "^3.4" + }, + "time": "2020-10-23T06:02:30+00:00", + "bin": [ + "bin/carbon" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.x-dev", + "dev-3.x": "3.x-dev" + }, + "laravel": { + "providers": [ + "Carbon\\Laravel\\ServiceProvider" ] }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" - }, - { - "name": "Márk Sági-Kazár", - "email": "mark.sagikazar@gmail.com", - "homepage": "https://sagikazarmark.hu" - } - ], - "description": "Guzzle is a PHP HTTP client library", - "homepage": "http://guzzlephp.org/", - "keywords": [ - "client", - "curl", - "framework", - "http", - "http client", - "psr-18", - "psr-7", - "rest", - "web service" - ], - "support": { - "issues": "https://github.com/guzzle/guzzle/issues", - "source": "https://github.com/guzzle/guzzle/tree/7.3.0" - }, - "funding": [ - { - "url": "https://github.com/GrahamCampbell", - "type": "github" - }, - { - "url": "https://github.com/Nyholm", - "type": "github" - }, - { - "url": "https://github.com/alexeyshockov", - "type": "github" - }, - { - "url": "https://github.com/gmponos", - "type": "github" - } - ], - "install-path": "../guzzlehttp/guzzle" - }, - { - "name": "guzzlehttp/promises", - "version": "1.4.1", - "version_normalized": "1.4.1.0", - "source": { - "type": "git", - "url": "https://github.com/guzzle/promises.git", - "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d", - "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d", - "shasum": "" - }, - "require": { - "php": ">=5.5" - }, - "require-dev": { - "symfony/phpunit-bridge": "^4.4 || ^5.1" - }, - "time": "2021-03-07T09:25:29+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.4-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "GuzzleHttp\\Promise\\": "src/" - }, - "files": [ - "src/functions_include.php" + "phpstan": { + "includes": [ + "extension.neon" ] + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Carbon\\": "src/Carbon/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Brian Nesbitt", + "email": "brian@nesbot.com", + "homepage": "http://nesbot.com" + }, + { + "name": "kylekatarnls", + "homepage": "http://github.com/kylekatarnls" + } + ], + "description": "An API extension for DateTime that supports 281 different languages.", + "homepage": "http://carbon.nesbot.com", + "keywords": [ + "date", + "datetime", + "time" + ] + }, + { + "name": "nyco/wp-assets", + "version": "1.1.5", + "version_normalized": "1.1.5.0", + "source": { + "type": "git", + "url": "https://github.com/CityOfNewYork/nyco-wp-assets.git", + "reference": "47c074595ca8d21af46a4a8ec62a40b54a94f904" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/CityOfNewYork/nyco-wp-assets/zipball/47c074595ca8d21af46a4a8ec62a40b54a94f904", + "reference": "47c074595ca8d21af46a4a8ec62a40b54a94f904", + "shasum": "" + }, + "require": { + "composer/installers": "^1.7", + "mustangostang/spyc": "^0.6" + }, + "require-dev": { + "codeception/codeception": "^2.3", + "squizlabs/php_codesniffer": "3.*" + }, + "time": "2020-04-09T20:46:50+00:00", + "type": "wordpress-muplugin", + "installation-source": "dist", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-3.0+" + ], + "authors": [ + { + "name": "NYC Opportunity", + "email": "products@nycopportunity.nyc.gov", + "homepage": "https://nyc.gov/opportunity" + } + ], + "description": "A developer plugin with helpers for managing assets in WordPress.", + "homepage": "https://github.com/cityofnewyork/nyco-wp-assets", + "keywords": [ + "assets", + "configuration", + "css", + "enqueue", + "inline", + "integrations", + "javascript", + "nycopportunity", + "register", + "scripts", + "styles", + "theme", + "wordpress" + ] + }, + { + "name": "nyco/wp-config", + "version": "1.0.1", + "version_normalized": "1.0.1.0", + "source": { + "type": "git", + "url": "https://github.com/CityOfNewYork/nyco-wp-config.git", + "reference": "04d74c5b78030066e1c334943e0a10da2e78e2a9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/CityOfNewYork/nyco-wp-config/zipball/04d74c5b78030066e1c334943e0a10da2e78e2a9", + "reference": "04d74c5b78030066e1c334943e0a10da2e78e2a9", + "shasum": "" + }, + "require": { + "composer/installers": "~1.0", + "illuminate/encryption": "^5.6", + "mustangostang/spyc": "^0.6" + }, + "require-dev": { + "codeception/codeception": "^2.3", + "squizlabs/php_codesniffer": "3.*" + }, + "time": "2020-04-09T20:44:23+00:00", + "type": "wordpress-muplugin", + "installation-source": "dist", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-3.0+" + ], + "authors": [ + { + "name": "NYC Opportunity", + "email": "products@nycopportunity.nyc.gov", + "homepage": "https://nyc.gov/opportunity" + } + ], + "description": "A WordPress package for environment configuration.", + "homepage": "https://github.com/cityofnewyork/nyco-wp-config", + "keywords": [ + "configuration", + "constants", + "environment", + "wordpress" + ] + }, + { + "name": "nyco/wp-send-me-nyc", + "version": "1.5.0", + "version_normalized": "1.5.0.0", + "source": { + "type": "git", + "url": "https://github.com/CityOfNewYork/nyco-wp-send-me-nyc.git", + "reference": "56e857e60205e0bb6046d88a73a1667b2f019bbd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/CityOfNewYork/nyco-wp-send-me-nyc/zipball/56e857e60205e0bb6046d88a73a1667b2f019bbd", + "reference": "56e857e60205e0bb6046d88a73a1667b2f019bbd", + "shasum": "" + }, + "require": { + "aws/aws-sdk-php": "^3.166.2", + "composer/installers": "^1.9.0", + "soundasleep/html2text": "^1.1", + "twilio/sdk": "^6.15.0" + }, + "require-dev": { + "squizlabs/php_codesniffer": "^3.5.8" + }, + "time": "2021-06-03T20:47:13+00:00", + "type": "wordpress-muplugin", + "installation-source": "dist", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-3.0+" + ], + "authors": [ + { + "name": "NYC Opportunity", + "email": "products@nycopportunity.nyc.gov", + "homepage": "http://nyc.gov/opportunity" + } + ], + "description": "A developer plugin for WordPress that enables sharing website links via SMS or Email.", + "homepage": "https://github.com/cityofnewyork/nyco-wp-send-me-nyc", + "keywords": [ + "aws", + "bitly", + "email", + "integrations", + "nycopportunity", + "sharing", + "sms", + "theme", + "twilio", + "wordpress" + ], + "support": { + "issues": "https://github.com/cityofnewyork/nyco-wp-send-me-nyc/issues", + "source": "https://github.com/CityOfNewYork/nyco-wp-send-me-nyc/tree/v1.5.0" + } + }, + { + "name": "psr/container", + "version": "1.0.0", + "version_normalized": "1.0.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/container.git", + "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f", + "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "time": "2017-02-14T16:28:37+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Psr\\Container\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common Container Interface (PHP FIG PSR-11)", + "homepage": "https://github.com/php-fig/container", + "keywords": [ + "PSR-11", + "container", + "container-interface", + "container-interop", + "psr" + ] + }, + { + "name": "psr/http-client", + "version": "1.0.1", + "version_normalized": "1.0.1.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-client.git", + "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621", + "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0", + "psr/http-message": "^1.0" + }, + "time": "2020-06-29T06:28:15+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Psr\\Http\\Client\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP clients", + "homepage": "https://github.com/php-fig/http-client", + "keywords": [ + "http", + "http-client", + "psr", + "psr-18" + ], + "support": { + "source": "https://github.com/php-fig/http-client/tree/master" + } + }, + { + "name": "psr/http-message", + "version": "1.0.1", + "version_normalized": "1.0.1.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-message.git", + "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363", + "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "time": "2016-08-06T14:39:51+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP messages", + "homepage": "https://github.com/php-fig/http-message", + "keywords": [ + "http", + "http-message", + "psr", + "psr-7", + "request", + "response" + ], + "support": { + "source": "https://github.com/php-fig/http-message/tree/master" + } + }, + { + "name": "psr/log", + "version": "1.1.3", + "version_normalized": "1.1.3.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/log.git", + "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc", + "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "time": "2020-03-23T09:12:05+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Psr\\Log\\": "Psr/Log/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", + "keywords": [ + "log", + "psr", + "psr-3" + ] + }, + { + "name": "psr/simple-cache", + "version": "1.0.1", + "version_normalized": "1.0.1.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/simple-cache.git", + "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b", + "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "time": "2017-10-23T01:57:42+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Psr\\SimpleCache\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common interfaces for simple caching", + "keywords": [ + "cache", + "caching", + "psr", + "psr-16", + "simple-cache" + ] + }, + { + "name": "ralouphie/getallheaders", + "version": "3.0.3", + "version_normalized": "3.0.3.0", + "source": { + "type": "git", + "url": "https://github.com/ralouphie/getallheaders.git", + "reference": "120b605dfeb996808c31b6477290a714d356e822" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", + "reference": "120b605dfeb996808c31b6477290a714d356e822", + "shasum": "" + }, + "require": { + "php": ">=5.6" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.1", + "phpunit/phpunit": "^5 || ^6.5" + }, + "time": "2019-03-08T08:55:37+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "files": [ + "src/getallheaders.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ralph Khattar", + "email": "ralph.khattar@gmail.com" + } + ], + "description": "A polyfill for getallheaders.", + "support": { + "issues": "https://github.com/ralouphie/getallheaders/issues", + "source": "https://github.com/ralouphie/getallheaders/tree/develop" + } + }, + { + "name": "soundasleep/html2text", + "version": "1.1.0", + "version_normalized": "1.1.0.0", + "source": { + "type": "git", + "url": "https://github.com/soundasleep/html2text.git", + "reference": "3243a7107878a61685d2eccf99918d6479e039fc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/soundasleep/html2text/zipball/3243a7107878a61685d2eccf99918d6479e039fc", + "reference": "3243a7107878a61685d2eccf99918d6479e039fc", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "php": ">=7.0" + }, + "require-dev": { + "phpunit/phpunit": "~7.0", + "soundasleep/component-tests": "~0.2" + }, + "time": "2019-02-15T01:44:54+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Soundasleep\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jevon Wright", + "homepage": "https://jevon.org", + "role": "Developer" + } + ], + "description": "A PHP script to convert HTML into a plain text format", + "homepage": "https://github.com/soundasleep/html2text", + "keywords": [ + "email", + "html", + "php", + "text" + ], + "support": { + "email": "support@jevon.org", + "issues": "https://github.com/soundasleep/html2text/issues", + "source": "https://github.com/soundasleep/html2text/tree/master" + } + }, + { + "name": "symfony/polyfill-ctype", + "version": "v1.20.0", + "version_normalized": "1.20.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41", + "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "suggest": { + "ext-ctype": "For best performance" + }, + "time": "2020-10-23T14:02:19+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.20-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + }, + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for ctype functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ] + }, + { + "name": "symfony/polyfill-mbstring", + "version": "v1.20.0", + "version_normalized": "1.20.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "39d483bdf39be819deabf04ec872eb0b2410b531" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531", + "reference": "39d483bdf39be819deabf04ec872eb0b2410b531", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "suggest": { + "ext-mbstring": "For best performance" + }, + "time": "2020-10-23T14:02:19+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.20-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Mbstring\\": "" + }, + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for the Mbstring extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" + ] + }, + { + "name": "symfony/polyfill-php80", + "version": "v1.20.0", + "version_normalized": "1.20.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de", + "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "time": "2020-10-23T14:02:19+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.20-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Php80\\": "" }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" - } + "files": [ + "bootstrap.php" ], - "description": "Guzzle promises library", - "keywords": [ - "promise" - ], - "support": { - "issues": "https://github.com/guzzle/promises/issues", - "source": "https://github.com/guzzle/promises/tree/1.4.1" - }, - "install-path": "../guzzlehttp/promises" - }, - { - "name": "guzzlehttp/psr7", - "version": "1.8.2", - "version_normalized": "1.8.2.0", - "source": { - "type": "git", - "url": "https://github.com/guzzle/psr7.git", - "reference": "dc960a912984efb74d0a90222870c72c87f10c91" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/dc960a912984efb74d0a90222870c72c87f10c91", - "reference": "dc960a912984efb74d0a90222870c72c87f10c91", - "shasum": "" - }, - "require": { - "php": ">=5.4.0", - "psr/http-message": "~1.0", - "ralouphie/getallheaders": "^2.0.5 || ^3.0.0" - }, - "provide": { - "psr/http-message-implementation": "1.0" - }, - "require-dev": { - "ext-zlib": "*", - "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10" - }, - "suggest": { - "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" - }, - "time": "2021-04-26T09:17:50+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.7-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "GuzzleHttp\\Psr7\\": "src/" - }, - "files": [ - "src/functions_include.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" - }, - { - "name": "Tobias Schultze", - "homepage": "https://github.com/Tobion" - } - ], - "description": "PSR-7 message implementation that also provides common utility methods", - "keywords": [ - "http", - "message", - "psr-7", - "request", - "response", - "stream", - "uri", - "url" - ], - "support": { - "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/1.8.2" - }, - "install-path": "../guzzlehttp/psr7" - }, - { - "name": "illuminate/contracts", - "version": "v5.8.36", - "version_normalized": "5.8.36.0", - "source": { - "type": "git", - "url": "https://github.com/illuminate/contracts.git", - "reference": "00fc6afee788fa07c311b0650ad276585f8aef96" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/illuminate/contracts/zipball/00fc6afee788fa07c311b0650ad276585f8aef96", - "reference": "00fc6afee788fa07c311b0650ad276585f8aef96", - "shasum": "" - }, - "require": { - "php": "^7.1.3", - "psr/container": "^1.0", - "psr/simple-cache": "^1.0" - }, - "time": "2019-07-30T13:57:21+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "5.8-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Illuminate\\Contracts\\": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Taylor Otwell", - "email": "taylor@laravel.com" - } - ], - "description": "The Illuminate Contracts package.", - "homepage": "https://laravel.com", - "install-path": "../illuminate/contracts" - }, - { - "name": "illuminate/encryption", - "version": "v5.8.36", - "version_normalized": "5.8.36.0", - "source": { - "type": "git", - "url": "https://github.com/illuminate/encryption.git", - "reference": "135c631bab0e0a8b9535b5750687e0a867c85193" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/illuminate/encryption/zipball/135c631bab0e0a8b9535b5750687e0a867c85193", - "reference": "135c631bab0e0a8b9535b5750687e0a867c85193", - "shasum": "" - }, - "require": { - "ext-json": "*", - "ext-mbstring": "*", - "ext-openssl": "*", - "illuminate/contracts": "5.8.*", - "illuminate/support": "5.8.*", - "php": "^7.1.3" - }, - "time": "2019-06-11T14:00:26+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "5.8-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Illuminate\\Encryption\\": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Taylor Otwell", - "email": "taylor@laravel.com" - } - ], - "description": "The Illuminate Encryption package.", - "homepage": "https://laravel.com", - "install-path": "../illuminate/encryption" - }, - { - "name": "illuminate/support", - "version": "v5.8.36", - "version_normalized": "5.8.36.0", - "source": { - "type": "git", - "url": "https://github.com/illuminate/support.git", - "reference": "df4af6a32908f1d89d74348624b57e3233eea247" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/illuminate/support/zipball/df4af6a32908f1d89d74348624b57e3233eea247", - "reference": "df4af6a32908f1d89d74348624b57e3233eea247", - "shasum": "" - }, - "require": { - "doctrine/inflector": "^1.1", - "ext-json": "*", - "ext-mbstring": "*", - "illuminate/contracts": "5.8.*", - "nesbot/carbon": "^1.26.3 || ^2.0", - "php": "^7.1.3" - }, - "conflict": { - "tightenco/collect": "<5.5.33" - }, - "suggest": { - "illuminate/filesystem": "Required to use the composer class (5.8.*).", - "moontoast/math": "Required to use ordered UUIDs (^1.1).", - "ramsey/uuid": "Required to use Str::uuid() (^3.7).", - "symfony/process": "Required to use the composer class (^4.2).", - "symfony/var-dumper": "Required to use the dd function (^4.2).", - "vlucas/phpdotenv": "Required to use the env helper (^3.3)." - }, - "time": "2019-12-12T14:16:47+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "5.8-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Illuminate\\Support\\": "" - }, - "files": [ - "helpers.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Taylor Otwell", - "email": "taylor@laravel.com" - } - ], - "description": "The Illuminate Support package.", - "homepage": "https://laravel.com", - "install-path": "../illuminate/support" - }, - { - "name": "michelf/php-markdown", - "version": "1.9.0", - "version_normalized": "1.9.0.0", - "source": { - "type": "git", - "url": "https://github.com/michelf/php-markdown.git", - "reference": "c83178d49e372ca967d1a8c77ae4e051b3a3c75c" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/michelf/php-markdown/zipball/c83178d49e372ca967d1a8c77ae4e051b3a3c75c", - "reference": "c83178d49e372ca967d1a8c77ae4e051b3a3c75c", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "require-dev": { - "phpunit/phpunit": ">=4.3 <5.8" - }, - "time": "2019-12-02T02:32:27+00:00", - "type": "library", - "installation-source": "dist", - "autoload": { - "psr-4": { - "Michelf\\": "Michelf/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Michel Fortin", - "email": "michel.fortin@michelf.ca", - "homepage": "https://michelf.ca/", - "role": "Developer" - }, - { - "name": "John Gruber", - "homepage": "https://daringfireball.net/" - } - ], - "description": "PHP Markdown", - "homepage": "https://michelf.ca/projects/php-markdown/", - "keywords": [ - "markdown" - ], - "install-path": "../michelf/php-markdown" - }, - { - "name": "mtdowling/jmespath.php", - "version": "2.6.0", - "version_normalized": "2.6.0.0", - "source": { - "type": "git", - "url": "https://github.com/jmespath/jmespath.php.git", - "reference": "42dae2cbd13154083ca6d70099692fef8ca84bfb" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/42dae2cbd13154083ca6d70099692fef8ca84bfb", - "reference": "42dae2cbd13154083ca6d70099692fef8ca84bfb", - "shasum": "" - }, - "require": { - "php": "^5.4 || ^7.0 || ^8.0", - "symfony/polyfill-mbstring": "^1.17" - }, - "require-dev": { - "composer/xdebug-handler": "^1.4", - "phpunit/phpunit": "^4.8.36 || ^7.5.15" - }, - "time": "2020-07-31T21:01:56+00:00", - "bin": [ - "bin/jp.php" - ], - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.6-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "JmesPath\\": "src/" - }, - "files": [ - "src/JmesPath.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" - } - ], - "description": "Declaratively specify how to extract elements from a JSON document", - "keywords": [ - "json", - "jsonpath" - ], - "support": { - "issues": "https://github.com/jmespath/jmespath.php/issues", - "source": "https://github.com/jmespath/jmespath.php/tree/2.6.0" - }, - "install-path": "../mtdowling/jmespath.php" - }, - { - "name": "mustangostang/spyc", - "version": "0.6.3", - "version_normalized": "0.6.3.0", - "source": { - "type": "git", - "url": "git@github.com:mustangostang/spyc.git", - "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mustangostang/spyc/zipball/4627c838b16550b666d15aeae1e5289dd5b77da0", - "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0", - "shasum": "" - }, - "require": { - "php": ">=5.3.1" - }, - "require-dev": { - "phpunit/phpunit": "4.3.*@dev" - }, - "time": "2019-09-10T13:16:29+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "0.5.x-dev" - } - }, - "installation-source": "dist", - "autoload": { - "files": [ - "Spyc.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "mustangostang", - "email": "vlad.andersen@gmail.com" - } - ], - "description": "A simple YAML loader/dumper class for PHP", - "homepage": "https://github.com/mustangostang/spyc/", - "keywords": [ - "spyc", - "yaml", - "yml" - ], - "install-path": "../mustangostang/spyc" - }, - { - "name": "nesbot/carbon", - "version": "2.41.5", - "version_normalized": "2.41.5.0", - "source": { - "type": "git", - "url": "https://github.com/briannesbitt/Carbon.git", - "reference": "c4a9caf97cfc53adfc219043bcecf42bc663acee" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/c4a9caf97cfc53adfc219043bcecf42bc663acee", - "reference": "c4a9caf97cfc53adfc219043bcecf42bc663acee", - "shasum": "" - }, - "require": { - "ext-json": "*", - "php": "^7.1.8 || ^8.0", - "symfony/polyfill-mbstring": "^1.0", - "symfony/translation": "^3.4 || ^4.0 || ^5.0" - }, - "require-dev": { - "doctrine/orm": "^2.7", - "friendsofphp/php-cs-fixer": "^2.14 || ^3.0", - "kylekatarnls/multi-tester": "^2.0", - "phpmd/phpmd": "^2.9", - "phpstan/extension-installer": "^1.0", - "phpstan/phpstan": "^0.12.35", - "phpunit/phpunit": "^7.5 || ^8.0", - "squizlabs/php_codesniffer": "^3.4" - }, - "time": "2020-10-23T06:02:30+00:00", - "bin": [ - "bin/carbon" - ], - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.x-dev", - "dev-3.x": "3.x-dev" - }, - "laravel": { - "providers": [ - "Carbon\\Laravel\\ServiceProvider" - ] - }, - "phpstan": { - "includes": [ - "extension.neon" - ] - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Carbon\\": "src/Carbon/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Brian Nesbitt", - "email": "brian@nesbot.com", - "homepage": "http://nesbot.com" - }, - { - "name": "kylekatarnls", - "homepage": "http://github.com/kylekatarnls" - } - ], - "description": "An API extension for DateTime that supports 281 different languages.", - "homepage": "http://carbon.nesbot.com", - "keywords": [ - "date", - "datetime", - "time" - ], - "install-path": "../nesbot/carbon" - }, - { - "name": "nyco/wp-assets", - "version": "1.1.5", - "version_normalized": "1.1.5.0", - "source": { - "type": "git", - "url": "https://github.com/CityOfNewYork/nyco-wp-assets.git", - "reference": "47c074595ca8d21af46a4a8ec62a40b54a94f904" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/CityOfNewYork/nyco-wp-assets/zipball/47c074595ca8d21af46a4a8ec62a40b54a94f904", - "reference": "47c074595ca8d21af46a4a8ec62a40b54a94f904", - "shasum": "" - }, - "require": { - "composer/installers": "^1.7", - "mustangostang/spyc": "^0.6" - }, - "require-dev": { - "codeception/codeception": "^2.3", - "squizlabs/php_codesniffer": "3.*" - }, - "time": "2020-04-09T20:46:50+00:00", - "type": "wordpress-muplugin", - "installation-source": "dist", - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-3.0+" - ], - "authors": [ - { - "name": "NYC Opportunity", - "email": "products@nycopportunity.nyc.gov", - "homepage": "https://nyc.gov/opportunity" - } - ], - "description": "A developer plugin with helpers for managing assets in WordPress.", - "homepage": "https://github.com/cityofnewyork/nyco-wp-assets", - "keywords": [ - "assets", - "configuration", - "css", - "enqueue", - "inline", - "integrations", - "javascript", - "nycopportunity", - "register", - "scripts", - "styles", - "theme", - "wordpress" - ], - "install-path": "../../wp-content/mu-plugins/wp-assets" - }, - { - "name": "nyco/wp-config", - "version": "1.0.1", - "version_normalized": "1.0.1.0", - "source": { - "type": "git", - "url": "https://github.com/CityOfNewYork/nyco-wp-config.git", - "reference": "04d74c5b78030066e1c334943e0a10da2e78e2a9" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/CityOfNewYork/nyco-wp-config/zipball/04d74c5b78030066e1c334943e0a10da2e78e2a9", - "reference": "04d74c5b78030066e1c334943e0a10da2e78e2a9", - "shasum": "" - }, - "require": { - "composer/installers": "~1.0", - "illuminate/encryption": "^5.6", - "mustangostang/spyc": "^0.6" - }, - "require-dev": { - "codeception/codeception": "^2.3", - "squizlabs/php_codesniffer": "3.*" - }, - "time": "2020-04-09T20:44:23+00:00", - "type": "wordpress-muplugin", - "installation-source": "dist", - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-3.0+" - ], - "authors": [ - { - "name": "NYC Opportunity", - "email": "products@nycopportunity.nyc.gov", - "homepage": "https://nyc.gov/opportunity" - } - ], - "description": "A WordPress package for environment configuration.", - "homepage": "https://github.com/cityofnewyork/nyco-wp-config", - "keywords": [ - "configuration", - "constants", - "environment", - "wordpress" - ], - "install-path": "../../wp-content/mu-plugins/wp-config" - }, - { - "name": "nyco/wp-send-me-nyc", - "version": "1.5.0", - "version_normalized": "1.5.0.0", - "source": { - "type": "git", - "url": "https://github.com/CityOfNewYork/nyco-wp-send-me-nyc.git", - "reference": "56e857e60205e0bb6046d88a73a1667b2f019bbd" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/CityOfNewYork/nyco-wp-send-me-nyc/zipball/56e857e60205e0bb6046d88a73a1667b2f019bbd", - "reference": "56e857e60205e0bb6046d88a73a1667b2f019bbd", - "shasum": "" - }, - "require": { - "aws/aws-sdk-php": "^3.166.2", - "composer/installers": "^1.9.0", - "soundasleep/html2text": "^1.1", - "twilio/sdk": "^6.15.0" - }, - "require-dev": { - "squizlabs/php_codesniffer": "^3.5.8" - }, - "time": "2021-06-03T20:47:13+00:00", - "type": "wordpress-muplugin", - "installation-source": "dist", - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-3.0+" - ], - "authors": [ - { - "name": "NYC Opportunity", - "email": "products@nycopportunity.nyc.gov", - "homepage": "http://nyc.gov/opportunity" - } - ], - "description": "A developer plugin for WordPress that enables sharing website links via SMS or Email.", - "homepage": "https://github.com/cityofnewyork/nyco-wp-send-me-nyc", - "keywords": [ - "aws", - "bitly", - "email", - "integrations", - "nycopportunity", - "sharing", - "sms", - "theme", - "twilio", - "wordpress" - ], - "support": { - "issues": "https://github.com/cityofnewyork/nyco-wp-send-me-nyc/issues", - "source": "https://github.com/CityOfNewYork/nyco-wp-send-me-nyc/tree/v1.5.0" - }, - "install-path": "../../wp-content/mu-plugins/wp-send-me-nyc" - }, - { - "name": "psr/container", - "version": "1.0.0", - "version_normalized": "1.0.0.0", - "source": { - "type": "git", - "url": "https://github.com/php-fig/container.git", - "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f", - "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "time": "2017-02-14T16:28:37+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Psr\\Container\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" - } - ], - "description": "Common Container Interface (PHP FIG PSR-11)", - "homepage": "https://github.com/php-fig/container", - "keywords": [ - "PSR-11", - "container", - "container-interface", - "container-interop", - "psr" - ], - "install-path": "../psr/container" - }, - { - "name": "psr/http-client", - "version": "1.0.1", - "version_normalized": "1.0.1.0", - "source": { - "type": "git", - "url": "https://github.com/php-fig/http-client.git", - "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621", - "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621", - "shasum": "" - }, - "require": { - "php": "^7.0 || ^8.0", - "psr/http-message": "^1.0" - }, - "time": "2020-06-29T06:28:15+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Psr\\Http\\Client\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" - } - ], - "description": "Common interface for HTTP clients", - "homepage": "https://github.com/php-fig/http-client", - "keywords": [ - "http", - "http-client", - "psr", - "psr-18" - ], - "support": { - "source": "https://github.com/php-fig/http-client/tree/master" - }, - "install-path": "../psr/http-client" - }, - { - "name": "psr/http-message", - "version": "1.0.1", - "version_normalized": "1.0.1.0", - "source": { - "type": "git", - "url": "https://github.com/php-fig/http-message.git", - "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363", - "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "time": "2016-08-06T14:39:51+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Psr\\Http\\Message\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" - } - ], - "description": "Common interface for HTTP messages", - "homepage": "https://github.com/php-fig/http-message", - "keywords": [ - "http", - "http-message", - "psr", - "psr-7", - "request", - "response" - ], - "support": { - "source": "https://github.com/php-fig/http-message/tree/master" - }, - "install-path": "../psr/http-message" - }, - { - "name": "psr/log", - "version": "1.1.3", - "version_normalized": "1.1.3.0", - "source": { - "type": "git", - "url": "https://github.com/php-fig/log.git", - "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc", - "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "time": "2020-03-23T09:12:05+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.1.x-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Psr\\Log\\": "Psr/Log/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" - } - ], - "description": "Common interface for logging libraries", - "homepage": "https://github.com/php-fig/log", - "keywords": [ - "log", - "psr", - "psr-3" - ], - "install-path": "../psr/log" - }, - { - "name": "psr/simple-cache", - "version": "1.0.1", - "version_normalized": "1.0.1.0", - "source": { - "type": "git", - "url": "https://github.com/php-fig/simple-cache.git", - "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b", - "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "time": "2017-10-23T01:57:42+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Psr\\SimpleCache\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" - } - ], - "description": "Common interfaces for simple caching", - "keywords": [ - "cache", - "caching", - "psr", - "psr-16", - "simple-cache" - ], - "install-path": "../psr/simple-cache" - }, - { - "name": "ralouphie/getallheaders", - "version": "3.0.3", - "version_normalized": "3.0.3.0", - "source": { - "type": "git", - "url": "https://github.com/ralouphie/getallheaders.git", - "reference": "120b605dfeb996808c31b6477290a714d356e822" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", - "reference": "120b605dfeb996808c31b6477290a714d356e822", - "shasum": "" - }, - "require": { - "php": ">=5.6" - }, - "require-dev": { - "php-coveralls/php-coveralls": "^2.1", - "phpunit/phpunit": "^5 || ^6.5" - }, - "time": "2019-03-08T08:55:37+00:00", - "type": "library", - "installation-source": "dist", - "autoload": { - "files": [ - "src/getallheaders.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Ralph Khattar", - "email": "ralph.khattar@gmail.com" - } - ], - "description": "A polyfill for getallheaders.", - "support": { - "issues": "https://github.com/ralouphie/getallheaders/issues", - "source": "https://github.com/ralouphie/getallheaders/tree/develop" - }, - "install-path": "../ralouphie/getallheaders" - }, - { - "name": "soundasleep/html2text", - "version": "1.1.0", - "version_normalized": "1.1.0.0", - "source": { - "type": "git", - "url": "https://github.com/soundasleep/html2text.git", - "reference": "3243a7107878a61685d2eccf99918d6479e039fc" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/soundasleep/html2text/zipball/3243a7107878a61685d2eccf99918d6479e039fc", - "reference": "3243a7107878a61685d2eccf99918d6479e039fc", - "shasum": "" - }, - "require": { - "ext-dom": "*", - "ext-libxml": "*", - "php": ">=7.0" - }, - "require-dev": { - "phpunit/phpunit": "~7.0", - "soundasleep/component-tests": "~0.2" - }, - "time": "2019-02-15T01:44:54+00:00", - "type": "library", - "installation-source": "dist", - "autoload": { - "psr-4": { - "Soundasleep\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jevon Wright", - "homepage": "https://jevon.org", - "role": "Developer" - } - ], - "description": "A PHP script to convert HTML into a plain text format", - "homepage": "https://github.com/soundasleep/html2text", - "keywords": [ - "email", - "html", - "php", - "text" - ], - "support": { - "email": "support@jevon.org", - "issues": "https://github.com/soundasleep/html2text/issues", - "source": "https://github.com/soundasleep/html2text/tree/master" - }, - "install-path": "../soundasleep/html2text" - }, - { - "name": "symfony/polyfill-ctype", - "version": "v1.20.0", - "version_normalized": "1.20.0.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41", - "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41", - "shasum": "" - }, - "require": { - "php": ">=7.1" - }, - "suggest": { - "ext-ctype": "For best performance" - }, - "time": "2020-10-23T14:02:19+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.20-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Ctype\\": "" - }, - "files": [ - "bootstrap.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Gert de Pagter", - "email": "BackEndTea@gmail.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill for ctype functions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "ctype", - "polyfill", - "portable" - ], - "install-path": "../symfony/polyfill-ctype" - }, - { - "name": "symfony/polyfill-mbstring", - "version": "v1.20.0", - "version_normalized": "1.20.0.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "39d483bdf39be819deabf04ec872eb0b2410b531" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531", - "reference": "39d483bdf39be819deabf04ec872eb0b2410b531", - "shasum": "" - }, - "require": { - "php": ">=7.1" - }, - "suggest": { - "ext-mbstring": "For best performance" - }, - "time": "2020-10-23T14:02:19+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.20-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Mbstring\\": "" - }, - "files": [ - "bootstrap.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill for the Mbstring extension", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "mbstring", - "polyfill", - "portable", - "shim" - ], - "install-path": "../symfony/polyfill-mbstring" - }, - { - "name": "symfony/polyfill-php80", - "version": "v1.20.0", - "version_normalized": "1.20.0.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de", - "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de", - "shasum": "" - }, - "require": { - "php": ">=7.1" - }, - "time": "2020-10-23T14:02:19+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.20-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Php80\\": "" - }, - "files": [ - "bootstrap.php" - ], - "classmap": [ - "Resources/stubs" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Ion Bazan", - "email": "ion.bazan@gmail.com" - }, - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "polyfill", - "portable", - "shim" - ], - "install-path": "../symfony/polyfill-php80" - }, - { - "name": "symfony/translation", - "version": "v5.1.8", - "version_normalized": "5.1.8.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/translation.git", - "reference": "27980838fd261e04379fa91e94e81e662fe5a1b6" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/27980838fd261e04379fa91e94e81e662fe5a1b6", - "reference": "27980838fd261e04379fa91e94e81e662fe5a1b6", - "shasum": "" - }, - "require": { - "php": ">=7.2.5", - "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php80": "^1.15", - "symfony/translation-contracts": "^2" - }, - "conflict": { - "symfony/config": "<4.4", - "symfony/dependency-injection": "<5.0", - "symfony/http-kernel": "<5.0", - "symfony/twig-bundle": "<5.0", - "symfony/yaml": "<4.4" - }, - "provide": { - "symfony/translation-implementation": "2.0" - }, - "require-dev": { - "psr/log": "~1.0", - "symfony/config": "^4.4|^5.0", - "symfony/console": "^4.4|^5.0", - "symfony/dependency-injection": "^5.0", - "symfony/finder": "^4.4|^5.0", - "symfony/http-kernel": "^5.0", - "symfony/intl": "^4.4|^5.0", - "symfony/service-contracts": "^1.1.2|^2", - "symfony/yaml": "^4.4|^5.0" - }, - "suggest": { - "psr/log-implementation": "To use logging capability in translator", - "symfony/config": "", - "symfony/yaml": "" - }, - "time": "2020-10-24T12:01:57+00:00", - "type": "library", - "installation-source": "dist", - "autoload": { - "psr-4": { - "Symfony\\Component\\Translation\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony Translation Component", - "homepage": "https://symfony.com", - "install-path": "../symfony/translation" - }, - { - "name": "symfony/translation-contracts", - "version": "v2.3.0", - "version_normalized": "2.3.0.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/translation-contracts.git", - "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105", - "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105", - "shasum": "" - }, - "require": { - "php": ">=7.2.5" - }, - "suggest": { - "symfony/translation-implementation": "" - }, - "time": "2020-09-28T13:05:58+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.3-dev" - }, - "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Symfony\\Contracts\\Translation\\": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Generic abstractions related to translation", - "homepage": "https://symfony.com", - "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" - ], - "install-path": "../symfony/translation-contracts" - }, - { - "name": "timber/timber", - "version": "1.18.2", - "version_normalized": "1.18.2.0", - "source": { - "type": "git", - "url": "https://github.com/timber/timber.git", - "reference": "18766d1af8650ca919534cc497e7f0e8d82423a3" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/timber/timber/zipball/18766d1af8650ca919534cc497e7f0e8d82423a3", - "reference": "18766d1af8650ca919534cc497e7f0e8d82423a3", - "shasum": "" - }, - "require": { - "asm89/twig-cache-extension": "~1.0", - "composer/installers": "~1.0", - "php": ">=5.3.0|7.*", - "twig/twig": "^1.41|^2.10", - "upstatement/routes": "0.5" - }, - "require-dev": { - "dealerdirect/phpcodesniffer-composer-installer": "^0.5.0", - "johnpbloch/wordpress": "*", - "phpunit/phpunit": "5.7.16|6.*", - "squizlabs/php_codesniffer": "3.*", - "wp-coding-standards/wpcs": "^2.0", - "wpackagist-plugin/advanced-custom-fields": "5.*", - "wpackagist-plugin/co-authors-plus": "3.2.*|3.4.*" - }, - "suggest": { - "satooshi/php-coveralls": "1.0.* for code coverage" - }, - "time": "2020-10-11T15:08:40+00:00", - "type": "library", - "installation-source": "dist", - "autoload": { - "psr-4": { - "Timber\\": "lib/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jared Novack", - "email": "jared@upstatement.com", - "homepage": "http://upstatement.com" - }, - { - "name": "Connor J. Burton", - "email": "connorjburton@gmail.com", - "homepage": "http://connorburton.com" - } - ], - "description": "Plugin to write WordPress themes w Object-Oriented Code and the Twig Template Engine", - "homepage": "http://timber.upstatement.com", - "keywords": [ - "templating", - "themes", - "timber", - "twig" - ], - "install-path": "../timber/timber" - }, - { - "name": "twig/twig", - "version": "v2.14.1", - "version_normalized": "2.14.1.0", - "source": { - "type": "git", - "url": "https://github.com/twigphp/Twig.git", - "reference": "5eb9ac5dfdd20c3f59495c22841adc5da980d312" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/5eb9ac5dfdd20c3f59495c22841adc5da980d312", - "reference": "5eb9ac5dfdd20c3f59495c22841adc5da980d312", - "shasum": "" - }, - "require": { - "php": ">=7.2.5", - "symfony/polyfill-ctype": "^1.8", - "symfony/polyfill-mbstring": "^1.3" - }, - "require-dev": { - "psr/container": "^1.0", - "symfony/phpunit-bridge": "^4.4.9|^5.0.9" - }, - "time": "2020-10-27T19:25:29+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.14-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-0": { - "Twig_": "lib/" - }, - "psr-4": { - "Twig\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com", - "homepage": "http://fabien.potencier.org", - "role": "Lead Developer" - }, - { - "name": "Twig Team", - "role": "Contributors" - }, - { - "name": "Armin Ronacher", - "email": "armin.ronacher@active-4.com", - "role": "Project Founder" - } - ], - "description": "Twig, the flexible, fast, and secure template language for PHP", - "homepage": "https://twig.symfony.com", - "keywords": [ - "templating" - ], - "install-path": "../twig/twig" - }, - { - "name": "twilio/sdk", - "version": "6.24.0", - "version_normalized": "6.24.0.0", - "source": { - "type": "git", - "url": "https://github.com/twilio/twilio-php.git", - "reference": "110651d67940617e08557a7bac57edbd27b77d3e" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/twilio/twilio-php/zipball/110651d67940617e08557a7bac57edbd27b77d3e", - "reference": "110651d67940617e08557a7bac57edbd27b77d3e", - "shasum": "" - }, - "require": { - "php": ">=7.1.0" - }, - "require-dev": { - "guzzlehttp/guzzle": "^6.3 || ^7.0", - "phpunit/phpunit": ">=4.5", - "theseer/phpdox": "^0.12.0" - }, - "suggest": { - "guzzlehttp/guzzle": "An HTTP client to execute the API requests" - }, - "time": "2021-05-19T19:41:37+00:00", - "type": "library", - "installation-source": "dist", - "autoload": { - "psr-4": { - "Twilio\\": "src/Twilio/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Twilio API Team", - "email": "api@twilio.com" - } - ], - "description": "A PHP wrapper for Twilio's API", - "homepage": "http://github.com/twilio/twilio-php", - "keywords": [ - "api", - "sms", - "twilio" - ], - "support": { - "issues": "https://github.com/twilio/twilio-php/issues", - "source": "https://github.com/twilio/twilio-php/tree/6.24.0" - }, - "install-path": "../twilio/sdk" - }, - { - "name": "upstatement/routes", - "version": "0.5", - "version_normalized": "0.5.0.0", - "source": { - "type": "git", - "url": "https://github.com/Upstatement/routes.git", - "reference": "3267d28be0a73f197087d58384e1a358d85671b6" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Upstatement/routes/zipball/3267d28be0a73f197087d58384e1a358d85671b6", - "reference": "3267d28be0a73f197087d58384e1a358d85671b6", - "shasum": "" - }, - "require": { - "altorouter/altorouter": "^1.1.0", - "composer/installers": "~1.0", - "php": ">=5.3.0" - }, - "require-dev": { - "phpunit/phpunit": "3.7.*", - "satooshi/php-coveralls": "dev-master", - "wp-cli/wp-cli": "*" - }, - "time": "2018-12-04T01:13:41+00:00", - "type": "library", - "installation-source": "dist", - "autoload": { - "psr-0": { - "Routes": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jared Novack", - "email": "jared@upstatement.com", - "homepage": "http://upstatement.com" - } - ], - "description": "Manage rewrites and routes in WordPress with this dead-simple plugin", - "homepage": "http://routes.upstatement.com", - "keywords": [ - "redirects", - "rewrite", - "routes", - "routing" - ], - "install-path": "../upstatement/routes" - }, - { - "name": "whoops/soap", - "version": "1.0.0", - "version_normalized": "1.0.0.0", - "source": { - "type": "git", - "url": "https://github.com/whoops-php/soap.git", - "reference": "3a20e2b037bc49ff7f909db2694740ceb1b1be50" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/whoops-php/soap/zipball/3a20e2b037bc49ff7f909db2694740ceb1b1be50", - "reference": "3a20e2b037bc49ff7f909db2694740ceb1b1be50", - "shasum": "" - }, - "require-dev": { - "filp/whoops": "^2.0-dev", - "phpunit/phpunit": "^4.8" - }, - "time": "2015-11-23T20:11:17+00:00", - "type": "library", - "installation-source": "dist", - "autoload": { - "psr-4": { - "Whoops\\Handler\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Markus Staab", - "email": "maggus.staab@googlemail.com" - } - ], - "description": "Soap handler for Whoops", - "install-path": "../whoops/soap" - }, - { - "name": "wpackagist-plugin/acf-to-rest-api", - "version": "3.3.2", - "version_normalized": "3.3.2.0", - "source": { - "type": "svn", - "url": "https://plugins.svn.wordpress.org/acf-to-rest-api/", - "reference": "tags/3.3.2" - }, - "dist": { - "type": "zip", - "url": "https://downloads.wordpress.org/plugin/acf-to-rest-api.3.3.2.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "wordpress-plugin", - "installation-source": "dist", - "homepage": "https://wordpress.org/plugins/acf-to-rest-api/", - "install-path": "../../wp-content/plugins/acf-to-rest-api" - }, - { - "name": "wpackagist-plugin/aryo-activity-log", - "version": "2.6.1", - "version_normalized": "2.6.1.0", - "source": { - "type": "svn", - "url": "https://plugins.svn.wordpress.org/aryo-activity-log/", - "reference": "tags/2.6.1" - }, - "dist": { - "type": "zip", - "url": "https://downloads.wordpress.org/plugin/aryo-activity-log.2.6.1.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "wordpress-plugin", - "installation-source": "dist", - "homepage": "https://wordpress.org/plugins/aryo-activity-log/", - "install-path": "../../wp-content/plugins/aryo-activity-log" - }, - { - "name": "wpackagist-plugin/auto-post-scheduler", - "version": "1.82", - "version_normalized": "1.82.0.0", - "source": { - "type": "svn", - "url": "https://plugins.svn.wordpress.org/auto-post-scheduler/", - "reference": "tags/1.82" - }, - "dist": { - "type": "zip", - "url": "https://downloads.wordpress.org/plugin/auto-post-scheduler.1.82.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "wordpress-plugin", - "installation-source": "dist", - "homepage": "https://wordpress.org/plugins/auto-post-scheduler/", - "install-path": "../../wp-content/plugins/auto-post-scheduler" - }, - { - "name": "wpackagist-plugin/better-search-replace", - "version": "1.3.4", - "version_normalized": "1.3.4.0", - "source": { - "type": "svn", - "url": "https://plugins.svn.wordpress.org/better-search-replace/", - "reference": "trunk" - }, - "dist": { - "type": "zip", - "url": "https://downloads.wordpress.org/plugin/better-search-replace.zip?timestamp=1607361595" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "wordpress-plugin", - "installation-source": "dist", - "homepage": "https://wordpress.org/plugins/better-search-replace/", - "install-path": "../../wp-content/plugins/better-search-replace" - }, - { - "name": "wpackagist-plugin/bulk-delete", - "version": "6.0.2", - "version_normalized": "6.0.2.0", - "source": { - "type": "svn", - "url": "https://plugins.svn.wordpress.org/bulk-delete/", - "reference": "tags/6.0.2" - }, - "dist": { - "type": "zip", - "url": "https://downloads.wordpress.org/plugin/bulk-delete.6.0.2.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "wordpress-plugin", - "installation-source": "dist", - "homepage": "https://wordpress.org/plugins/bulk-delete/", - "install-path": "../../wp-content/plugins/bulk-delete" - }, - { - "name": "wpackagist-plugin/classic-editor", - "version": "1.6", - "version_normalized": "1.6.0.0", - "source": { - "type": "svn", - "url": "https://plugins.svn.wordpress.org/classic-editor/", - "reference": "tags/1.6" - }, - "dist": { - "type": "zip", - "url": "https://downloads.wordpress.org/plugin/classic-editor.1.6.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "wordpress-plugin", - "installation-source": "dist", - "homepage": "https://wordpress.org/plugins/classic-editor/", - "install-path": "../../wp-content/plugins/classic-editor" - }, - { - "name": "wpackagist-plugin/duplicate-post", - "version": "4.1.1", - "version_normalized": "4.1.1.0", - "source": { - "type": "svn", - "url": "https://plugins.svn.wordpress.org/duplicate-post/", - "reference": "tags/4.1.1" - }, - "dist": { - "type": "zip", - "url": "https://downloads.wordpress.org/plugin/duplicate-post.4.1.1.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "wordpress-plugin", - "installation-source": "dist", - "homepage": "https://wordpress.org/plugins/duplicate-post/", - "install-path": "../../wp-content/plugins/duplicate-post" - }, - { - "name": "wpackagist-plugin/gathercontent-import", - "version": "3.1.14", - "version_normalized": "3.1.14.0", - "source": { - "type": "svn", - "url": "https://plugins.svn.wordpress.org/gathercontent-import/", - "reference": "tags/3.1.14" - }, - "dist": { - "type": "zip", - "url": "https://downloads.wordpress.org/plugin/gathercontent-import.3.1.14.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "wordpress-plugin", - "installation-source": "dist", - "homepage": "https://wordpress.org/plugins/gathercontent-import/", - "install-path": "../../wp-content/plugins/gathercontent-import" - }, - { - "name": "wpackagist-plugin/google-authenticator", - "version": "0.53", - "version_normalized": "0.53.0.0", - "source": { - "type": "svn", - "url": "https://plugins.svn.wordpress.org/google-authenticator/", - "reference": "tags/0.53" - }, - "dist": { - "type": "zip", - "url": "https://downloads.wordpress.org/plugin/google-authenticator.0.53.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "wordpress-plugin", - "installation-source": "dist", - "homepage": "https://wordpress.org/plugins/google-authenticator/", - "install-path": "../../wp-content/plugins/google-authenticator" - }, - { - "name": "wpackagist-plugin/limit-login-attempts-reloaded", - "version": "2.19.2", - "version_normalized": "2.19.2.0", - "source": { - "type": "svn", - "url": "https://plugins.svn.wordpress.org/limit-login-attempts-reloaded/", - "reference": "tags/2.19.2" - }, - "dist": { - "type": "zip", - "url": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.19.2.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "wordpress-plugin", - "installation-source": "dist", - "homepage": "https://wordpress.org/plugins/limit-login-attempts-reloaded/", - "install-path": "../../wp-content/plugins/limit-login-attempts-reloaded" - }, - { - "name": "wpackagist-plugin/media-cleaner", - "version": "6.1.5", - "version_normalized": "6.1.5.0", - "source": { - "type": "svn", - "url": "https://plugins.svn.wordpress.org/media-cleaner/", - "reference": "tags/6.1.5" - }, - "dist": { - "type": "zip", - "url": "https://downloads.wordpress.org/plugin/media-cleaner.6.1.5.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "wordpress-plugin", - "installation-source": "dist", - "homepage": "https://wordpress.org/plugins/media-cleaner/", - "install-path": "../../wp-content/plugins/media-cleaner" - }, - { - "name": "wpackagist-plugin/post-expiration-date", - "version": "1.3", - "version_normalized": "1.3.0.0", - "source": { - "type": "svn", - "url": "https://plugins.svn.wordpress.org/post-expiration-date/", - "reference": "tags/1.3" - }, - "dist": { - "type": "zip", - "url": "https://downloads.wordpress.org/plugin/post-expiration-date.1.3.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "wordpress-plugin", - "installation-source": "dist", - "homepage": "https://wordpress.org/plugins/post-expiration-date/", - "install-path": "../../wp-content/plugins/post-expiration-date" - }, - { - "name": "wpackagist-plugin/query-monitor", - "version": "3.6.7", - "version_normalized": "3.6.7.0", - "source": { - "type": "svn", - "url": "https://plugins.svn.wordpress.org/query-monitor/", - "reference": "tags/3.6.7" - }, - "dist": { - "type": "zip", - "url": "https://downloads.wordpress.org/plugin/query-monitor.3.6.7.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "wordpress-plugin", - "installation-source": "dist", - "homepage": "https://wordpress.org/plugins/query-monitor/", - "install-path": "../../wp-content/plugins/query-monitor" - }, - { - "name": "wpackagist-plugin/simple-custom-post-order", - "version": "2.5.3", - "version_normalized": "2.5.3.0", - "source": { - "type": "svn", - "url": "https://plugins.svn.wordpress.org/simple-custom-post-order/", - "reference": "tags/2.5.3" - }, - "dist": { - "type": "zip", - "url": "https://downloads.wordpress.org/plugin/simple-custom-post-order.2.5.3.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "wordpress-plugin", - "installation-source": "dist", - "homepage": "https://wordpress.org/plugins/simple-custom-post-order/", - "install-path": "../../wp-content/plugins/simple-custom-post-order" - }, - { - "name": "wpackagist-plugin/svg-support", - "version": "2.3.18", - "version_normalized": "2.3.18.0", - "source": { - "type": "svn", - "url": "https://plugins.svn.wordpress.org/svg-support/", - "reference": "tags/2.3.18" - }, - "dist": { - "type": "zip", - "url": "https://downloads.wordpress.org/plugin/svg-support.2.3.18.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "wordpress-plugin", - "installation-source": "dist", - "homepage": "https://wordpress.org/plugins/svg-support/", - "install-path": "../../wp-content/plugins/svg-support" - }, - { - "name": "wpackagist-plugin/taxonomy-terms-order", - "version": "1.5.7.4", - "version_normalized": "1.5.7.4", - "source": { - "type": "svn", - "url": "https://plugins.svn.wordpress.org/taxonomy-terms-order/", - "reference": "tags/1.5.7.4" - }, - "dist": { - "type": "zip", - "url": "https://downloads.wordpress.org/plugin/taxonomy-terms-order.1.5.7.4.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "wordpress-plugin", - "installation-source": "dist", - "homepage": "https://wordpress.org/plugins/taxonomy-terms-order/", - "install-path": "../../wp-content/plugins/taxonomy-terms-order" - }, - { - "name": "wpackagist-plugin/the-events-calendar", - "version": "5.3.2.1", - "version_normalized": "5.3.2.1", - "source": { - "type": "svn", - "url": "https://plugins.svn.wordpress.org/the-events-calendar/", - "reference": "tags/5.3.2.1" - }, - "dist": { - "type": "zip", - "url": "https://downloads.wordpress.org/plugin/the-events-calendar.5.3.2.1.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "wordpress-plugin", - "installation-source": "dist", - "homepage": "https://wordpress.org/plugins/the-events-calendar/", - "install-path": "../../wp-content/plugins/the-events-calendar" - }, - { - "name": "wpackagist-plugin/tinymce-advanced", - "version": "5.6.0", - "version_normalized": "5.6.0.0", - "source": { - "type": "svn", - "url": "https://plugins.svn.wordpress.org/tinymce-advanced/", - "reference": "tags/5.6.0" - }, - "dist": { - "type": "zip", - "url": "https://downloads.wordpress.org/plugin/tinymce-advanced.5.6.0.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "wordpress-plugin", - "installation-source": "dist", - "homepage": "https://wordpress.org/plugins/tinymce-advanced/", - "install-path": "../../wp-content/plugins/tinymce-advanced" - }, - { - "name": "wpackagist-plugin/wordpress-importer", - "version": "0.7", - "version_normalized": "0.7.0.0", - "source": { - "type": "svn", - "url": "https://plugins.svn.wordpress.org/wordpress-importer/", - "reference": "tags/0.7" - }, - "dist": { - "type": "zip", - "url": "https://downloads.wordpress.org/plugin/wordpress-importer.0.7.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "wordpress-plugin", - "installation-source": "dist", - "homepage": "https://wordpress.org/plugins/wordpress-importer/", - "install-path": "../../wp-content/plugins/wordpress-importer" - }, - { - "name": "wpackagist-plugin/wp-all-export", - "version": "1.2.7", - "version_normalized": "1.2.7.0", - "source": { - "type": "svn", - "url": "https://plugins.svn.wordpress.org/wp-all-export/", - "reference": "tags/1.2.7" - }, - "dist": { - "type": "zip", - "url": "https://downloads.wordpress.org/plugin/wp-all-export.1.2.7.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "wordpress-plugin", - "installation-source": "dist", - "homepage": "https://wordpress.org/plugins/wp-all-export/", - "install-path": "../../wp-content/plugins/wp-all-export" - }, - { - "name": "wpackagist-plugin/wp-smartcrop", - "version": "2.0.5", - "version_normalized": "2.0.5.0", - "source": { - "type": "svn", - "url": "https://plugins.svn.wordpress.org/wp-smartcrop/", - "reference": "tags/2.0.5" - }, - "dist": { - "type": "zip", - "url": "https://downloads.wordpress.org/plugin/wp-smartcrop.2.0.5.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "wordpress-plugin", - "installation-source": "dist", - "homepage": "https://wordpress.org/plugins/wp-smartcrop/", - "install-path": "../../wp-content/plugins/wp-smartcrop" - }, - { - "name": "wpackagist-plugin/wps-hide-login", - "version": "1.8.3", - "version_normalized": "1.8.3.0", - "source": { - "type": "svn", - "url": "https://plugins.svn.wordpress.org/wps-hide-login/", - "reference": "tags/1.8.3" - }, - "dist": { - "type": "zip", - "url": "https://downloads.wordpress.org/plugin/wps-hide-login.1.8.3.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "wordpress-plugin", - "installation-source": "dist", - "homepage": "https://wordpress.org/plugins/wps-hide-login/", - "install-path": "../../wp-content/plugins/wps-hide-login" + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ] + }, + { + "name": "symfony/translation", + "version": "v5.1.8", + "version_normalized": "5.1.8.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation.git", + "reference": "27980838fd261e04379fa91e94e81e662fe5a1b6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation/zipball/27980838fd261e04379fa91e94e81e662fe5a1b6", + "reference": "27980838fd261e04379fa91e94e81e662fe5a1b6", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/polyfill-mbstring": "~1.0", + "symfony/polyfill-php80": "^1.15", + "symfony/translation-contracts": "^2" + }, + "conflict": { + "symfony/config": "<4.4", + "symfony/dependency-injection": "<5.0", + "symfony/http-kernel": "<5.0", + "symfony/twig-bundle": "<5.0", + "symfony/yaml": "<4.4" + }, + "provide": { + "symfony/translation-implementation": "2.0" + }, + "require-dev": { + "psr/log": "~1.0", + "symfony/config": "^4.4|^5.0", + "symfony/console": "^4.4|^5.0", + "symfony/dependency-injection": "^5.0", + "symfony/finder": "^4.4|^5.0", + "symfony/http-kernel": "^5.0", + "symfony/intl": "^4.4|^5.0", + "symfony/service-contracts": "^1.1.2|^2", + "symfony/yaml": "^4.4|^5.0" + }, + "suggest": { + "psr/log-implementation": "To use logging capability in translator", + "symfony/config": "", + "symfony/yaml": "" + }, + "time": "2020-10-24T12:01:57+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Symfony\\Component\\Translation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Translation Component", + "homepage": "https://symfony.com" + }, + { + "name": "symfony/translation-contracts", + "version": "v2.3.0", + "version_normalized": "2.3.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation-contracts.git", + "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105", + "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105", + "shasum": "" + }, + "require": { + "php": ">=7.2.5" + }, + "suggest": { + "symfony/translation-implementation": "" + }, + "time": "2020-09-28T13:05:58+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.3-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Translation\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to translation", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ] + }, + { + "name": "timber/timber", + "version": "1.18.2", + "version_normalized": "1.18.2.0", + "source": { + "type": "git", + "url": "https://github.com/timber/timber.git", + "reference": "18766d1af8650ca919534cc497e7f0e8d82423a3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/timber/timber/zipball/18766d1af8650ca919534cc497e7f0e8d82423a3", + "reference": "18766d1af8650ca919534cc497e7f0e8d82423a3", + "shasum": "" + }, + "require": { + "asm89/twig-cache-extension": "~1.0", + "composer/installers": "~1.0", + "php": ">=5.3.0|7.*", + "twig/twig": "^1.41|^2.10", + "upstatement/routes": "0.5" + }, + "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "^0.5.0", + "johnpbloch/wordpress": "*", + "phpunit/phpunit": "5.7.16|6.*", + "squizlabs/php_codesniffer": "3.*", + "wp-coding-standards/wpcs": "^2.0", + "wpackagist-plugin/advanced-custom-fields": "5.*", + "wpackagist-plugin/co-authors-plus": "3.2.*|3.4.*" + }, + "suggest": { + "satooshi/php-coveralls": "1.0.* for code coverage" + }, + "time": "2020-10-11T15:08:40+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Timber\\": "lib/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jared Novack", + "email": "jared@upstatement.com", + "homepage": "http://upstatement.com" + }, + { + "name": "Connor J. Burton", + "email": "connorjburton@gmail.com", + "homepage": "http://connorburton.com" + } + ], + "description": "Plugin to write WordPress themes w Object-Oriented Code and the Twig Template Engine", + "homepage": "http://timber.upstatement.com", + "keywords": [ + "templating", + "themes", + "timber", + "twig" + ] + }, + { + "name": "twig/twig", + "version": "v2.14.1", + "version_normalized": "2.14.1.0", + "source": { + "type": "git", + "url": "https://github.com/twigphp/Twig.git", + "reference": "5eb9ac5dfdd20c3f59495c22841adc5da980d312" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/5eb9ac5dfdd20c3f59495c22841adc5da980d312", + "reference": "5eb9ac5dfdd20c3f59495c22841adc5da980d312", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/polyfill-ctype": "^1.8", + "symfony/polyfill-mbstring": "^1.3" + }, + "require-dev": { + "psr/container": "^1.0", + "symfony/phpunit-bridge": "^4.4.9|^5.0.9" + }, + "time": "2020-10-27T19:25:29+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.14-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-0": { + "Twig_": "lib/" + }, + "psr-4": { + "Twig\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com", + "homepage": "http://fabien.potencier.org", + "role": "Lead Developer" + }, + { + "name": "Twig Team", + "role": "Contributors" + }, + { + "name": "Armin Ronacher", + "email": "armin.ronacher@active-4.com", + "role": "Project Founder" + } + ], + "description": "Twig, the flexible, fast, and secure template language for PHP", + "homepage": "https://twig.symfony.com", + "keywords": [ + "templating" + ] + }, + { + "name": "twilio/sdk", + "version": "6.24.0", + "version_normalized": "6.24.0.0", + "source": { + "type": "git", + "url": "https://github.com/twilio/twilio-php.git", + "reference": "110651d67940617e08557a7bac57edbd27b77d3e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/twilio/twilio-php/zipball/110651d67940617e08557a7bac57edbd27b77d3e", + "reference": "110651d67940617e08557a7bac57edbd27b77d3e", + "shasum": "" + }, + "require": { + "php": ">=7.1.0" + }, + "require-dev": { + "guzzlehttp/guzzle": "^6.3 || ^7.0", + "phpunit/phpunit": ">=4.5", + "theseer/phpdox": "^0.12.0" + }, + "suggest": { + "guzzlehttp/guzzle": "An HTTP client to execute the API requests" + }, + "time": "2021-05-19T19:41:37+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Twilio\\": "src/Twilio/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Twilio API Team", + "email": "api@twilio.com" + } + ], + "description": "A PHP wrapper for Twilio's API", + "homepage": "http://github.com/twilio/twilio-php", + "keywords": [ + "api", + "sms", + "twilio" + ], + "support": { + "issues": "https://github.com/twilio/twilio-php/issues", + "source": "https://github.com/twilio/twilio-php/tree/6.24.0" } - ], - "dev": true, - "dev-package-names": [ - "filp/whoops", - "psr/log", - "whoops/soap", - "wpackagist-plugin/query-monitor" - ] -} + }, + { + "name": "upstatement/routes", + "version": "0.5", + "version_normalized": "0.5.0.0", + "source": { + "type": "git", + "url": "https://github.com/Upstatement/routes.git", + "reference": "3267d28be0a73f197087d58384e1a358d85671b6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Upstatement/routes/zipball/3267d28be0a73f197087d58384e1a358d85671b6", + "reference": "3267d28be0a73f197087d58384e1a358d85671b6", + "shasum": "" + }, + "require": { + "altorouter/altorouter": "^1.1.0", + "composer/installers": "~1.0", + "php": ">=5.3.0" + }, + "require-dev": { + "phpunit/phpunit": "3.7.*", + "satooshi/php-coveralls": "dev-master", + "wp-cli/wp-cli": "*" + }, + "time": "2018-12-04T01:13:41+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-0": { + "Routes": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jared Novack", + "email": "jared@upstatement.com", + "homepage": "http://upstatement.com" + } + ], + "description": "Manage rewrites and routes in WordPress with this dead-simple plugin", + "homepage": "http://routes.upstatement.com", + "keywords": [ + "redirects", + "rewrite", + "routes", + "routing" + ] + }, + { + "name": "whoops/soap", + "version": "1.0.0", + "version_normalized": "1.0.0.0", + "source": { + "type": "git", + "url": "https://github.com/whoops-php/soap.git", + "reference": "3a20e2b037bc49ff7f909db2694740ceb1b1be50" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/whoops-php/soap/zipball/3a20e2b037bc49ff7f909db2694740ceb1b1be50", + "reference": "3a20e2b037bc49ff7f909db2694740ceb1b1be50", + "shasum": "" + }, + "require-dev": { + "filp/whoops": "^2.0-dev", + "phpunit/phpunit": "^4.8" + }, + "time": "2015-11-23T20:11:17+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Whoops\\Handler\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Markus Staab", + "email": "maggus.staab@googlemail.com" + } + ], + "description": "Soap handler for Whoops" + }, + { + "name": "wpackagist-plugin/acf-to-rest-api", + "version": "3.3.2", + "version_normalized": "3.3.2.0", + "source": { + "type": "svn", + "url": "https://plugins.svn.wordpress.org/acf-to-rest-api/", + "reference": "tags/3.3.2" + }, + "dist": { + "type": "zip", + "url": "https://downloads.wordpress.org/plugin/acf-to-rest-api.3.3.2.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "wordpress-plugin", + "installation-source": "dist", + "homepage": "https://wordpress.org/plugins/acf-to-rest-api/" + }, + { + "name": "wpackagist-plugin/aryo-activity-log", + "version": "2.6.1", + "version_normalized": "2.6.1.0", + "source": { + "type": "svn", + "url": "https://plugins.svn.wordpress.org/aryo-activity-log/", + "reference": "tags/2.6.1" + }, + "dist": { + "type": "zip", + "url": "https://downloads.wordpress.org/plugin/aryo-activity-log.2.6.1.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "wordpress-plugin", + "installation-source": "dist", + "homepage": "https://wordpress.org/plugins/aryo-activity-log/" + }, + { + "name": "wpackagist-plugin/auto-post-scheduler", + "version": "1.82", + "version_normalized": "1.82.0.0", + "source": { + "type": "svn", + "url": "https://plugins.svn.wordpress.org/auto-post-scheduler/", + "reference": "tags/1.82" + }, + "dist": { + "type": "zip", + "url": "https://downloads.wordpress.org/plugin/auto-post-scheduler.1.82.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "wordpress-plugin", + "installation-source": "dist", + "homepage": "https://wordpress.org/plugins/auto-post-scheduler/" + }, + { + "name": "wpackagist-plugin/better-search-replace", + "version": "1.3.4", + "version_normalized": "1.3.4.0", + "source": { + "type": "svn", + "url": "https://plugins.svn.wordpress.org/better-search-replace/", + "reference": "trunk" + }, + "dist": { + "type": "zip", + "url": "https://downloads.wordpress.org/plugin/better-search-replace.zip?timestamp=1607361595" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "wordpress-plugin", + "installation-source": "dist", + "homepage": "https://wordpress.org/plugins/better-search-replace/" + }, + { + "name": "wpackagist-plugin/bulk-delete", + "version": "6.0.2", + "version_normalized": "6.0.2.0", + "source": { + "type": "svn", + "url": "https://plugins.svn.wordpress.org/bulk-delete/", + "reference": "tags/6.0.2" + }, + "dist": { + "type": "zip", + "url": "https://downloads.wordpress.org/plugin/bulk-delete.6.0.2.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "wordpress-plugin", + "installation-source": "dist", + "homepage": "https://wordpress.org/plugins/bulk-delete/" + }, + { + "name": "wpackagist-plugin/classic-editor", + "version": "1.6", + "version_normalized": "1.6.0.0", + "source": { + "type": "svn", + "url": "https://plugins.svn.wordpress.org/classic-editor/", + "reference": "tags/1.6" + }, + "dist": { + "type": "zip", + "url": "https://downloads.wordpress.org/plugin/classic-editor.1.6.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "wordpress-plugin", + "installation-source": "dist", + "homepage": "https://wordpress.org/plugins/classic-editor/" + }, + { + "name": "wpackagist-plugin/duplicate-post", + "version": "4.1.1", + "version_normalized": "4.1.1.0", + "source": { + "type": "svn", + "url": "https://plugins.svn.wordpress.org/duplicate-post/", + "reference": "tags/4.1.1" + }, + "dist": { + "type": "zip", + "url": "https://downloads.wordpress.org/plugin/duplicate-post.4.1.1.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "wordpress-plugin", + "installation-source": "dist", + "homepage": "https://wordpress.org/plugins/duplicate-post/" + }, + { + "name": "wpackagist-plugin/gathercontent-import", + "version": "3.1.14", + "version_normalized": "3.1.14.0", + "source": { + "type": "svn", + "url": "https://plugins.svn.wordpress.org/gathercontent-import/", + "reference": "tags/3.1.14" + }, + "dist": { + "type": "zip", + "url": "https://downloads.wordpress.org/plugin/gathercontent-import.3.1.14.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "wordpress-plugin", + "installation-source": "dist", + "homepage": "https://wordpress.org/plugins/gathercontent-import/" + }, + { + "name": "wpackagist-plugin/google-authenticator", + "version": "0.53", + "version_normalized": "0.53.0.0", + "source": { + "type": "svn", + "url": "https://plugins.svn.wordpress.org/google-authenticator/", + "reference": "tags/0.53" + }, + "dist": { + "type": "zip", + "url": "https://downloads.wordpress.org/plugin/google-authenticator.0.53.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "wordpress-plugin", + "installation-source": "dist", + "homepage": "https://wordpress.org/plugins/google-authenticator/" + }, + { + "name": "wpackagist-plugin/limit-login-attempts-reloaded", + "version": "2.19.2", + "version_normalized": "2.19.2.0", + "source": { + "type": "svn", + "url": "https://plugins.svn.wordpress.org/limit-login-attempts-reloaded/", + "reference": "tags/2.19.2" + }, + "dist": { + "type": "zip", + "url": "https://downloads.wordpress.org/plugin/limit-login-attempts-reloaded.2.19.2.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "wordpress-plugin", + "installation-source": "dist", + "homepage": "https://wordpress.org/plugins/limit-login-attempts-reloaded/" + }, + { + "name": "wpackagist-plugin/media-cleaner", + "version": "6.1.5", + "version_normalized": "6.1.5.0", + "source": { + "type": "svn", + "url": "https://plugins.svn.wordpress.org/media-cleaner/", + "reference": "tags/6.1.5" + }, + "dist": { + "type": "zip", + "url": "https://downloads.wordpress.org/plugin/media-cleaner.6.1.5.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "wordpress-plugin", + "installation-source": "dist", + "homepage": "https://wordpress.org/plugins/media-cleaner/" + }, + { + "name": "wpackagist-plugin/post-expiration-date", + "version": "1.3", + "version_normalized": "1.3.0.0", + "source": { + "type": "svn", + "url": "https://plugins.svn.wordpress.org/post-expiration-date/", + "reference": "tags/1.3" + }, + "dist": { + "type": "zip", + "url": "https://downloads.wordpress.org/plugin/post-expiration-date.1.3.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "wordpress-plugin", + "installation-source": "dist", + "homepage": "https://wordpress.org/plugins/post-expiration-date/" + }, + { + "name": "wpackagist-plugin/query-monitor", + "version": "3.6.7", + "version_normalized": "3.6.7.0", + "source": { + "type": "svn", + "url": "https://plugins.svn.wordpress.org/query-monitor/", + "reference": "tags/3.6.7" + }, + "dist": { + "type": "zip", + "url": "https://downloads.wordpress.org/plugin/query-monitor.3.6.7.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "wordpress-plugin", + "installation-source": "dist", + "homepage": "https://wordpress.org/plugins/query-monitor/" + }, + { + "name": "wpackagist-plugin/simple-custom-post-order", + "version": "2.5.3", + "version_normalized": "2.5.3.0", + "source": { + "type": "svn", + "url": "https://plugins.svn.wordpress.org/simple-custom-post-order/", + "reference": "tags/2.5.3" + }, + "dist": { + "type": "zip", + "url": "https://downloads.wordpress.org/plugin/simple-custom-post-order.2.5.3.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "wordpress-plugin", + "installation-source": "dist", + "homepage": "https://wordpress.org/plugins/simple-custom-post-order/" + }, + { + "name": "wpackagist-plugin/svg-support", + "version": "2.3.18", + "version_normalized": "2.3.18.0", + "source": { + "type": "svn", + "url": "https://plugins.svn.wordpress.org/svg-support/", + "reference": "tags/2.3.18" + }, + "dist": { + "type": "zip", + "url": "https://downloads.wordpress.org/plugin/svg-support.2.3.18.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "wordpress-plugin", + "installation-source": "dist", + "homepage": "https://wordpress.org/plugins/svg-support/" + }, + { + "name": "wpackagist-plugin/taxonomy-terms-order", + "version": "1.5.7.4", + "version_normalized": "1.5.7.4", + "source": { + "type": "svn", + "url": "https://plugins.svn.wordpress.org/taxonomy-terms-order/", + "reference": "tags/1.5.7.4" + }, + "dist": { + "type": "zip", + "url": "https://downloads.wordpress.org/plugin/taxonomy-terms-order.1.5.7.4.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "wordpress-plugin", + "installation-source": "dist", + "homepage": "https://wordpress.org/plugins/taxonomy-terms-order/" + }, + { + "name": "wpackagist-plugin/the-events-calendar", + "version": "5.3.2.1", + "version_normalized": "5.3.2.1", + "source": { + "type": "svn", + "url": "https://plugins.svn.wordpress.org/the-events-calendar/", + "reference": "tags/5.3.2.1" + }, + "dist": { + "type": "zip", + "url": "https://downloads.wordpress.org/plugin/the-events-calendar.5.3.2.1.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "wordpress-plugin", + "installation-source": "dist", + "homepage": "https://wordpress.org/plugins/the-events-calendar/" + }, + { + "name": "wpackagist-plugin/tinymce-advanced", + "version": "5.6.0", + "version_normalized": "5.6.0.0", + "source": { + "type": "svn", + "url": "https://plugins.svn.wordpress.org/tinymce-advanced/", + "reference": "tags/5.6.0" + }, + "dist": { + "type": "zip", + "url": "https://downloads.wordpress.org/plugin/tinymce-advanced.5.6.0.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "wordpress-plugin", + "installation-source": "dist", + "homepage": "https://wordpress.org/plugins/tinymce-advanced/" + }, + { + "name": "wpackagist-plugin/wordpress-importer", + "version": "0.7", + "version_normalized": "0.7.0.0", + "source": { + "type": "svn", + "url": "https://plugins.svn.wordpress.org/wordpress-importer/", + "reference": "tags/0.7" + }, + "dist": { + "type": "zip", + "url": "https://downloads.wordpress.org/plugin/wordpress-importer.0.7.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "wordpress-plugin", + "installation-source": "dist", + "homepage": "https://wordpress.org/plugins/wordpress-importer/" + }, + { + "name": "wpackagist-plugin/wp-all-export", + "version": "1.2.7", + "version_normalized": "1.2.7.0", + "source": { + "type": "svn", + "url": "https://plugins.svn.wordpress.org/wp-all-export/", + "reference": "tags/1.2.7" + }, + "dist": { + "type": "zip", + "url": "https://downloads.wordpress.org/plugin/wp-all-export.1.2.7.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "wordpress-plugin", + "installation-source": "dist", + "homepage": "https://wordpress.org/plugins/wp-all-export/" + }, + { + "name": "wpackagist-plugin/wp-smartcrop", + "version": "2.0.5", + "version_normalized": "2.0.5.0", + "source": { + "type": "svn", + "url": "https://plugins.svn.wordpress.org/wp-smartcrop/", + "reference": "tags/2.0.5" + }, + "dist": { + "type": "zip", + "url": "https://downloads.wordpress.org/plugin/wp-smartcrop.2.0.5.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "wordpress-plugin", + "installation-source": "dist", + "homepage": "https://wordpress.org/plugins/wp-smartcrop/" + }, + { + "name": "wpackagist-plugin/wps-hide-login", + "version": "1.8.3", + "version_normalized": "1.8.3.0", + "source": { + "type": "svn", + "url": "https://plugins.svn.wordpress.org/wps-hide-login/", + "reference": "tags/1.8.3" + }, + "dist": { + "type": "zip", + "url": "https://downloads.wordpress.org/plugin/wps-hide-login.1.8.3.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "wordpress-plugin", + "installation-source": "dist", + "homepage": "https://wordpress.org/plugins/wps-hide-login/" + } +] diff --git a/wp-content/themes/guny/package-lock.json b/wp-content/themes/guny/package-lock.json index 143edf606..083c0580d 100644 --- a/wp-content/themes/guny/package-lock.json +++ b/wp-content/themes/guny/package-lock.json @@ -1,6 +1,6 @@ { "name": "guny", - "version": "4.1.2", + "version": "4.2.2", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/wp-content/themes/guny/package.json b/wp-content/themes/guny/package.json index 478204c58..1307b6c3d 100644 --- a/wp-content/themes/guny/package.json +++ b/wp-content/themes/guny/package.json @@ -1,6 +1,6 @@ { "name": "guny", - "version": "4.1.2", + "version": "4.2.2", "description": "Growing Up NYC", "repository": { "type": "git",