Plugin Directory

Changeset 3314722


Ignore:
Timestamp:
06/19/2025 02:25:32 PM (9 months ago)
Author:
dotMailer
Message:

Updating trunk for version 7.3.1

Location:
dotmailer-sign-up-widget/trunk
Files:
18 added
91 edited

Legend:

Unmodified
Added
Removed
  • dotmailer-sign-up-widget/trunk/dm_signup_form.php

    r3255812 r3314722  
    99 * Plugin URI:        https://integrations.dotdigital.com/technology-partners/wordpress
    1010 * Description:       Add a "Subscribe to Newsletter" widget to your website that will insert your contact in one of your Dotdigital lists.
    11  * Version:           7.3.0
     11 * Version:           7.3.1
    1212 * Requires PHP:      7.4
    1313 * Requires at least: 5.8
     
    2727require_once __DIR__ . '/vendor/autoload.php';
    2828
    29 define( 'DOTDIGITAL_WORDPRESS_VERSION', '7.3.0' );
     29define( 'DOTDIGITAL_WORDPRESS_VERSION', '7.3.1' );
    3030define( 'DOTDIGITAL_WORDPRESS_PLUGIN_NAME', 'dotdigital-for-wordpress' );
    3131define( 'DOTDIGITAL_WORDPRESS_PLUGIN_SLUG', 'dotdigital_for_wordpress' );
  • dotmailer-sign-up-widget/trunk/includes/rest/class-dotdigital-wordpress-signup-widget-controller.php

    r3150005 r3314722  
    1515class Dotdigital_WordPress_Signup_Widget_Controller
    1616{
     17    private const STATUS_SUBSCRIBED = 'subscribed';
    1718    /**
    1819     * @var Dotdigital_WordPress_Contact
     
    9293                $contact->setDataFields($this->prepare_data_fields($data['datafields'], $data['is_ajax'] ?? \false));
    9394            }
     95            $contact->setChannelProperties(array('email' => array('status' => self::STATUS_SUBSCRIBED)));
    9496            $this->dotdigital_contact->create_or_update($contact);
    9597        } catch (ResponseValidationException $e) {
  • dotmailer-sign-up-widget/trunk/readme.txt

    r3255812 r3314722  
    22Contributors: dotMailer, bsstaveley, amucklow, fstrezos, pvpcookie
    33Tags: email marketing, newsletter signup
    4 Tested up to: 6.7.2
    5 Stable tag: 7.3.0
     4Tested up to: 6.8.1
     5Stable tag: 7.3.1
    66License: MIT
    77License URI: https://opensource.org/licenses/MIT
     
    6868== Changelog ==
    6969
     70= 7.3.1 =
     71
     72**Bug fixes**
     73- Email channel status is now set on PATCH requests, allowing resubscribes to work correctly.
     74
    7075= 7.3.0 =
    7176
  • dotmailer-sign-up-widget/trunk/vendor/autoload.php

    r3150005 r3314722  
    1515        }
    1616    }
    17     trigger_error(
    18         $err,
    19         E_USER_ERROR
    20     );
     17    throw new RuntimeException($err);
    2118}
    2219
    2320require_once __DIR__ . '/composer/autoload_real.php';
    2421
    25 return ComposerAutoloaderInitb933e4dec037358ff05515f1fd78e117::getLoader();
     22return ComposerAutoloaderInit19354b1666905663163f60760caf1917::getLoader();
  • dotmailer-sign-up-widget/trunk/vendor/composer/InstalledVersions.php

    r3255812 r3314722  
    2626{
    2727    /**
     28     * @var string|null if set (by reflection by Composer), this should be set to the path where this class is being copied to
     29     * @internal
     30     */
     31    private static $selfDir = null;
     32    /**
    2833     * @var mixed[]|null
    2934     * @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}|array{}|null
     
    281286    }
    282287    /**
     288     * @return string
     289     */
     290    private static function getSelfDir()
     291    {
     292        if (self::$selfDir === null) {
     293            self::$selfDir = \strtr(__DIR__, '\\', '/');
     294        }
     295        return self::$selfDir;
     296    }
     297    /**
    283298     * @return array[]
    284299     * @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
     
    292307        $copiedLocalDir = \false;
    293308        if (self::$canGetVendors) {
    294             $selfDir = \strtr(__DIR__, '\\', '/');
     309            $selfDir = self::getSelfDir();
    295310            foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
    296311                $vendorDir = \strtr($vendorDir, '\\', '/');
  • dotmailer-sign-up-widget/trunk/vendor/composer/autoload_classmap.php

    r3255812 r3314722  
    5252    'Dotdigital_WordPress\\Pub\\Dotdigital_WordPress_Public' => $baseDir . '/public/class-dotdigital-wordpress-public.php',
    5353    'Dotdigital_WordPress_Vendor\\Attribute' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',
    54     'Dotdigital_WordPress_Vendor\\Carbon\\AbstractTranslator' => $vendorDir . '/nesbot/carbon/src/Carbon/AbstractTranslator.php',
    55     'Dotdigital_WordPress_Vendor\\Carbon\\Carbon' => $vendorDir . '/nesbot/carbon/src/Carbon/Carbon.php',
    56     'Dotdigital_WordPress_Vendor\\Carbon\\CarbonConverterInterface' => $vendorDir . '/nesbot/carbon/src/Carbon/CarbonConverterInterface.php',
    57     'Dotdigital_WordPress_Vendor\\Carbon\\CarbonImmutable' => $vendorDir . '/nesbot/carbon/src/Carbon/CarbonImmutable.php',
    58     'Dotdigital_WordPress_Vendor\\Carbon\\CarbonInterface' => $vendorDir . '/nesbot/carbon/src/Carbon/CarbonInterface.php',
    59     'Dotdigital_WordPress_Vendor\\Carbon\\CarbonInterval' => $vendorDir . '/nesbot/carbon/src/Carbon/CarbonInterval.php',
    60     'Dotdigital_WordPress_Vendor\\Carbon\\CarbonPeriod' => $vendorDir . '/nesbot/carbon/src/Carbon/CarbonPeriod.php',
    61     'Dotdigital_WordPress_Vendor\\Carbon\\CarbonPeriodImmutable' => $vendorDir . '/nesbot/carbon/src/Carbon/CarbonPeriodImmutable.php',
    62     'Dotdigital_WordPress_Vendor\\Carbon\\CarbonTimeZone' => $vendorDir . '/nesbot/carbon/src/Carbon/CarbonTimeZone.php',
    63     'Dotdigital_WordPress_Vendor\\Carbon\\Cli\\Invoker' => $vendorDir . '/nesbot/carbon/src/Carbon/Cli/Invoker.php',
    64     'Dotdigital_WordPress_Vendor\\Carbon\\Doctrine\\CarbonDoctrineType' => $vendorDir . '/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine/CarbonDoctrineType.php',
    65     'Dotdigital_WordPress_Vendor\\Carbon\\Doctrine\\CarbonImmutableType' => $vendorDir . '/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine/CarbonImmutableType.php',
    66     'Dotdigital_WordPress_Vendor\\Carbon\\Doctrine\\CarbonType' => $vendorDir . '/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine/CarbonType.php',
    67     'Dotdigital_WordPress_Vendor\\Carbon\\Doctrine\\CarbonTypeConverter' => $vendorDir . '/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine/CarbonTypeConverter.php',
    68     'Dotdigital_WordPress_Vendor\\Carbon\\Doctrine\\DateTimeDefaultPrecision' => $vendorDir . '/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine/DateTimeDefaultPrecision.php',
    69     'Dotdigital_WordPress_Vendor\\Carbon\\Doctrine\\DateTimeImmutableType' => $vendorDir . '/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine/DateTimeImmutableType.php',
    70     'Dotdigital_WordPress_Vendor\\Carbon\\Doctrine\\DateTimeType' => $vendorDir . '/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine/DateTimeType.php',
    71     'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\BadComparisonUnitException' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/BadComparisonUnitException.php',
    72     'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\BadFluentConstructorException' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/BadFluentConstructorException.php',
    73     'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\BadFluentSetterException' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/BadFluentSetterException.php',
    74     'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\BadMethodCallException' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/BadMethodCallException.php',
    75     'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\EndLessPeriodException' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/EndLessPeriodException.php',
    76     'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\Exception' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/Exception.php',
    77     'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\ImmutableException' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/ImmutableException.php',
    78     'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\InvalidArgumentException' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/InvalidArgumentException.php',
    79     'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\InvalidCastException' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/InvalidCastException.php',
    80     'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\InvalidDateException' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/InvalidDateException.php',
    81     'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\InvalidFormatException' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/InvalidFormatException.php',
    82     'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\InvalidIntervalException' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/InvalidIntervalException.php',
    83     'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\InvalidPeriodDateException' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/InvalidPeriodDateException.php',
    84     'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\InvalidPeriodParameterException' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/InvalidPeriodParameterException.php',
    85     'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\InvalidTimeZoneException' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/InvalidTimeZoneException.php',
    86     'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\InvalidTypeException' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/InvalidTypeException.php',
    87     'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\NotACarbonClassException' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/NotACarbonClassException.php',
    88     'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\NotAPeriodException' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/NotAPeriodException.php',
    89     'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\NotLocaleAwareException' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/NotLocaleAwareException.php',
    90     'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\OutOfRangeException' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/OutOfRangeException.php',
    91     'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\ParseErrorException' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/ParseErrorException.php',
    92     'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\RuntimeException' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/RuntimeException.php',
    93     'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\UnitException' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/UnitException.php',
    94     'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\UnitNotConfiguredException' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/UnitNotConfiguredException.php',
    95     'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\UnknownGetterException' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/UnknownGetterException.php',
    96     'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\UnknownMethodException' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/UnknownMethodException.php',
    97     'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\UnknownSetterException' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/UnknownSetterException.php',
    98     'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\UnknownUnitException' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/UnknownUnitException.php',
    99     'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\UnreachableException' => $vendorDir . '/nesbot/carbon/src/Carbon/Exceptions/UnreachableException.php',
    100     'Dotdigital_WordPress_Vendor\\Carbon\\Factory' => $vendorDir . '/nesbot/carbon/src/Carbon/Factory.php',
    101     'Dotdigital_WordPress_Vendor\\Carbon\\FactoryImmutable' => $vendorDir . '/nesbot/carbon/src/Carbon/FactoryImmutable.php',
    102     'Dotdigital_WordPress_Vendor\\Carbon\\Language' => $vendorDir . '/nesbot/carbon/src/Carbon/Language.php',
    103     'Dotdigital_WordPress_Vendor\\Carbon\\Laravel\\ServiceProvider' => $vendorDir . '/nesbot/carbon/src/Carbon/Laravel/ServiceProvider.php',
    104     'Dotdigital_WordPress_Vendor\\Carbon\\MessageFormatter\\MessageFormatterMapper' => $vendorDir . '/nesbot/carbon/src/Carbon/MessageFormatter/MessageFormatterMapper.php',
    105     'Dotdigital_WordPress_Vendor\\Carbon\\PHPStan\\AbstractMacro' => $vendorDir . '/nesbot/carbon/src/Carbon/PHPStan/AbstractMacro.php',
    106     'Dotdigital_WordPress_Vendor\\Carbon\\PHPStan\\Macro' => $vendorDir . '/nesbot/carbon/src/Carbon/PHPStan/Macro.php',
    107     'Dotdigital_WordPress_Vendor\\Carbon\\PHPStan\\MacroExtension' => $vendorDir . '/nesbot/carbon/src/Carbon/PHPStan/MacroExtension.php',
    108     'Dotdigital_WordPress_Vendor\\Carbon\\PHPStan\\MacroScanner' => $vendorDir . '/nesbot/carbon/src/Carbon/PHPStan/MacroScanner.php',
    109     'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Boundaries' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Boundaries.php',
    110     'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Cast' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Cast.php',
    111     'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Comparison' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Comparison.php',
    112     'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Converter' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Converter.php',
    113     'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Creator' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Creator.php',
    114     'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Date' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Date.php',
    115     'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\DeprecatedProperties' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/DeprecatedProperties.php',
    116     'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Difference' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Difference.php',
    117     'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\IntervalRounding' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/IntervalRounding.php',
    118     'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\IntervalStep' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/IntervalStep.php',
    119     'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Localization' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Localization.php',
    120     'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Macro' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Macro.php',
    121     'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\MagicParameter' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/MagicParameter.php',
    122     'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Mixin' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Mixin.php',
    123     'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Modifiers' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Modifiers.php',
    124     'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Mutability' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Mutability.php',
    125     'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\ObjectInitialisation' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/ObjectInitialisation.php',
    126     'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Options' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Options.php',
    127     'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Rounding' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Rounding.php',
    128     'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Serialization' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Serialization.php',
    129     'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Test' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Test.php',
    130     'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Timestamp' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Timestamp.php',
    131     'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\ToStringFormat' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/ToStringFormat.php',
    132     'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Units' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Units.php',
    133     'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Week' => $vendorDir . '/nesbot/carbon/src/Carbon/Traits/Week.php',
    134     'Dotdigital_WordPress_Vendor\\Carbon\\Translator' => $vendorDir . '/nesbot/carbon/src/Carbon/Translator.php',
    135     'Dotdigital_WordPress_Vendor\\Carbon\\TranslatorImmutable' => $vendorDir . '/nesbot/carbon/src/Carbon/TranslatorImmutable.php',
    136     'Dotdigital_WordPress_Vendor\\Carbon\\TranslatorStrongTypeInterface' => $vendorDir . '/nesbot/carbon/src/Carbon/TranslatorStrongTypeInterface.php',
    13754    'Dotdigital_WordPress_Vendor\\Clue\\StreamFilter\\CallbackFilter' => $vendorDir . '/clue/stream-filter/src/CallbackFilter.php',
    13855    'Dotdigital_WordPress_Vendor\\Dotdigital\\AbstractClient' => $vendorDir . '/dotdigital/dotdigital-php/src/AbstractClient.php',
     
    14158    'Dotdigital_WordPress_Vendor\\Dotdigital\\Exception\\MissingArgumentException' => $vendorDir . '/dotdigital/dotdigital-php/src/Exception/MissingArgumentException.php',
    14259    'Dotdigital_WordPress_Vendor\\Dotdigital\\Exception\\ResponseValidationException' => $vendorDir . '/dotdigital/dotdigital-php/src/Exception/ResponseValidationException.php',
     60    'Dotdigital_WordPress_Vendor\\Dotdigital\\Exception\\TooManyRequestsException' => $vendorDir . '/dotdigital/dotdigital-php/src/Exception/TooManyRequestsException.php',
    14361    'Dotdigital_WordPress_Vendor\\Dotdigital\\Exception\\ValidationException' => $vendorDir . '/dotdigital/dotdigital-php/src/Exception/ValidationException.php',
    14462    'Dotdigital_WordPress_Vendor\\Dotdigital\\HttpClient\\Message\\V2\\ResponseMediator' => $vendorDir . '/dotdigital/dotdigital-php/src/HttpClient/Message/V2/ResponseMediator.php',
     
    17593    'Dotdigital_WordPress_Vendor\\Dotdigital\\V2\\Resources\\Surveys' => $vendorDir . '/dotdigital/dotdigital-php/src/V2/Resources/Surveys.php',
    17694    'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Client' => $vendorDir . '/dotdigital/dotdigital-php/src/V3/Client.php',
     95    'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\AbstractImportModel' => $vendorDir . '/dotdigital/dotdigital-php/src/V3/Models/AbstractImportModel.php',
    17796    'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\AbstractSingletonModel' => $vendorDir . '/dotdigital/dotdigital-php/src/V3/Models/AbstractSingletonModel.php',
    17897    'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\Collection' => $vendorDir . '/dotdigital/dotdigital-php/src/V3/Models/Collection.php',
     
    188107    'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\Contact\\Import' => $vendorDir . '/dotdigital/dotdigital-php/src/V3/Models/Contact/Import.php',
    189108    'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\Contact\\Import\\Failure' => $vendorDir . '/dotdigital/dotdigital-php/src/V3/Models/Contact/Import/Failure.php',
    190     'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\Contact\\Import\\FailureCollection' => $vendorDir . '/dotdigital/dotdigital-php/src/V3/Models/Contact/Import/FailureCollection.php',
    191     'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\Contact\\Import\\FailureDetail' => $vendorDir . '/dotdigital/dotdigital-php/src/V3/Models/Contact/Import/FailureDetail.php',
    192     'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\Contact\\Import\\FailureDetailCollection' => $vendorDir . '/dotdigital/dotdigital-php/src/V3/Models/Contact/Import/FailureDetailCollection.php',
     109    'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\Contact\\Import\\Failure\\FailureDetail' => $vendorDir . '/dotdigital/dotdigital-php/src/V3/Models/Contact/Import/Failure/FailureDetail.php',
     110    'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\Contact\\Import\\Failure\\FailureDetailCollection' => $vendorDir . '/dotdigital/dotdigital-php/src/V3/Models/Contact/Import/Failure/FailureDetailCollection.php',
    193111    'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\Contact\\Import\\Summary' => $vendorDir . '/dotdigital/dotdigital-php/src/V3/Models/Contact/Import/Summary.php',
    194112    'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\Contact\\Preference' => $vendorDir . '/dotdigital/dotdigital-php/src/V3/Models/Contact/Preference.php',
    195113    'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\DataFieldCollection' => $vendorDir . '/dotdigital/dotdigital-php/src/V3/Models/DataFieldCollection.php',
     114    'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\Import\\FailureCollectionInterface' => $vendorDir . '/dotdigital/dotdigital-php/src/V3/Models/Import/FailureCollectionInterface.php',
     115    'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\Import\\FailureInterface' => $vendorDir . '/dotdigital/dotdigital-php/src/V3/Models/Import/FailureInterface.php',
     116    'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\Import\\Failure\\FailureCollection' => $vendorDir . '/dotdigital/dotdigital-php/src/V3/Models/Import/Failure/FailureCollection.php',
     117    'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\Import\\ImportInterface' => $vendorDir . '/dotdigital/dotdigital-php/src/V3/Models/Import/ImportInterface.php',
     118    'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\Import\\SummaryInterface' => $vendorDir . '/dotdigital/dotdigital-php/src/V3/Models/Import/SummaryInterface.php',
    196119    'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\InsightData' => $vendorDir . '/dotdigital/dotdigital-php/src/V3/Models/InsightData.php',
    197     'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\InsightData\\ContactIdentity' => $vendorDir . '/dotdigital/dotdigital-php/src/V3/Models/InsightData/ContactIdentity.php',
     120    'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\InsightData\\CollectionOwner' => $vendorDir . '/dotdigital/dotdigital-php/src/V3/Models/InsightData/CollectionOwner.php',
     121    'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\InsightData\\Import' => $vendorDir . '/dotdigital/dotdigital-php/src/V3/Models/InsightData/Import.php',
     122    'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\InsightData\\Import\\Failure' => $vendorDir . '/dotdigital/dotdigital-php/src/V3/Models/InsightData/Import/Failure.php',
     123    'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\InsightData\\Import\\Summary' => $vendorDir . '/dotdigital/dotdigital-php/src/V3/Models/InsightData/Import/Summary.php',
     124    'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\InsightData\\InsightDataIdentity' => $vendorDir . '/dotdigital/dotdigital-php/src/V3/Models/InsightData/InsightDataIdentity.php',
    198125    'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\InsightData\\Record' => $vendorDir . '/dotdigital/dotdigital-php/src/V3/Models/InsightData/Record.php',
    199126    'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\InsightData\\RecordsCollection' => $vendorDir . '/dotdigital/dotdigital-php/src/V3/Models/InsightData/RecordsCollection.php',
     
    442369    'Dotdigital_WordPress_Vendor\\JsonException' => $vendorDir . '/symfony/polyfill-php73/Resources/stubs/JsonException.php',
    443370    'Dotdigital_WordPress_Vendor\\PhpToken' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php',
    444     'Dotdigital_WordPress_Vendor\\Psr\\Clock\\ClockInterface' => $vendorDir . '/psr/clock/src/ClockInterface.php',
    445371    'Dotdigital_WordPress_Vendor\\Psr\\Http\\Client\\ClientExceptionInterface' => $vendorDir . '/psr/http-client/src/ClientExceptionInterface.php',
    446372    'Dotdigital_WordPress_Vendor\\Psr\\Http\\Client\\ClientInterface' => $vendorDir . '/psr/http-client/src/ClientInterface.php',
     
    474400    'Dotdigital_WordPress_Vendor\\Symfony\\Component\\OptionsResolver\\Options' => $vendorDir . '/symfony/options-resolver/Options.php',
    475401    'Dotdigital_WordPress_Vendor\\Symfony\\Component\\OptionsResolver\\OptionsResolver' => $vendorDir . '/symfony/options-resolver/OptionsResolver.php',
    476     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Catalogue\\AbstractOperation' => $vendorDir . '/symfony/translation/Catalogue/AbstractOperation.php',
    477     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Catalogue\\MergeOperation' => $vendorDir . '/symfony/translation/Catalogue/MergeOperation.php',
    478     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Catalogue\\OperationInterface' => $vendorDir . '/symfony/translation/Catalogue/OperationInterface.php',
    479     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Catalogue\\TargetOperation' => $vendorDir . '/symfony/translation/Catalogue/TargetOperation.php',
    480     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Command\\TranslationPullCommand' => $vendorDir . '/symfony/translation/Command/TranslationPullCommand.php',
    481     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Command\\TranslationPushCommand' => $vendorDir . '/symfony/translation/Command/TranslationPushCommand.php',
    482     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Command\\TranslationTrait' => $vendorDir . '/symfony/translation/Command/TranslationTrait.php',
    483     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Command\\XliffLintCommand' => $vendorDir . '/symfony/translation/Command/XliffLintCommand.php',
    484     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\DataCollectorTranslator' => $vendorDir . '/symfony/translation/DataCollectorTranslator.php',
    485     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\DataCollector\\TranslationDataCollector' => $vendorDir . '/symfony/translation/DataCollector/TranslationDataCollector.php',
    486     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\DependencyInjection\\TranslationDumperPass' => $vendorDir . '/symfony/translation/DependencyInjection/TranslationDumperPass.php',
    487     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\DependencyInjection\\TranslationExtractorPass' => $vendorDir . '/symfony/translation/DependencyInjection/TranslationExtractorPass.php',
    488     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\DependencyInjection\\TranslatorPass' => $vendorDir . '/symfony/translation/DependencyInjection/TranslatorPass.php',
    489     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\DependencyInjection\\TranslatorPathsPass' => $vendorDir . '/symfony/translation/DependencyInjection/TranslatorPathsPass.php',
    490     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Dumper\\CsvFileDumper' => $vendorDir . '/symfony/translation/Dumper/CsvFileDumper.php',
    491     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Dumper\\DumperInterface' => $vendorDir . '/symfony/translation/Dumper/DumperInterface.php',
    492     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Dumper\\FileDumper' => $vendorDir . '/symfony/translation/Dumper/FileDumper.php',
    493     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Dumper\\IcuResFileDumper' => $vendorDir . '/symfony/translation/Dumper/IcuResFileDumper.php',
    494     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Dumper\\IniFileDumper' => $vendorDir . '/symfony/translation/Dumper/IniFileDumper.php',
    495     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Dumper\\JsonFileDumper' => $vendorDir . '/symfony/translation/Dumper/JsonFileDumper.php',
    496     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Dumper\\MoFileDumper' => $vendorDir . '/symfony/translation/Dumper/MoFileDumper.php',
    497     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Dumper\\PhpFileDumper' => $vendorDir . '/symfony/translation/Dumper/PhpFileDumper.php',
    498     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Dumper\\PoFileDumper' => $vendorDir . '/symfony/translation/Dumper/PoFileDumper.php',
    499     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Dumper\\QtFileDumper' => $vendorDir . '/symfony/translation/Dumper/QtFileDumper.php',
    500     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Dumper\\XliffFileDumper' => $vendorDir . '/symfony/translation/Dumper/XliffFileDumper.php',
    501     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Dumper\\YamlFileDumper' => $vendorDir . '/symfony/translation/Dumper/YamlFileDumper.php',
    502     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/translation/Exception/ExceptionInterface.php',
    503     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Exception\\IncompleteDsnException' => $vendorDir . '/symfony/translation/Exception/IncompleteDsnException.php',
    504     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/translation/Exception/InvalidArgumentException.php',
    505     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Exception\\InvalidResourceException' => $vendorDir . '/symfony/translation/Exception/InvalidResourceException.php',
    506     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Exception\\LogicException' => $vendorDir . '/symfony/translation/Exception/LogicException.php',
    507     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Exception\\MissingRequiredOptionException' => $vendorDir . '/symfony/translation/Exception/MissingRequiredOptionException.php',
    508     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Exception\\NotFoundResourceException' => $vendorDir . '/symfony/translation/Exception/NotFoundResourceException.php',
    509     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Exception\\ProviderException' => $vendorDir . '/symfony/translation/Exception/ProviderException.php',
    510     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Exception\\ProviderExceptionInterface' => $vendorDir . '/symfony/translation/Exception/ProviderExceptionInterface.php',
    511     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Exception\\RuntimeException' => $vendorDir . '/symfony/translation/Exception/RuntimeException.php',
    512     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Exception\\UnsupportedSchemeException' => $vendorDir . '/symfony/translation/Exception/UnsupportedSchemeException.php',
    513     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Extractor\\AbstractFileExtractor' => $vendorDir . '/symfony/translation/Extractor/AbstractFileExtractor.php',
    514     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Extractor\\ChainExtractor' => $vendorDir . '/symfony/translation/Extractor/ChainExtractor.php',
    515     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Extractor\\ExtractorInterface' => $vendorDir . '/symfony/translation/Extractor/ExtractorInterface.php',
    516     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Extractor\\PhpExtractor' => $vendorDir . '/symfony/translation/Extractor/PhpExtractor.php',
    517     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Extractor\\PhpStringTokenParser' => $vendorDir . '/symfony/translation/Extractor/PhpStringTokenParser.php',
    518     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Formatter\\IntlFormatter' => $vendorDir . '/symfony/translation/Formatter/IntlFormatter.php',
    519     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Formatter\\IntlFormatterInterface' => $vendorDir . '/symfony/translation/Formatter/IntlFormatterInterface.php',
    520     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Formatter\\MessageFormatter' => $vendorDir . '/symfony/translation/Formatter/MessageFormatter.php',
    521     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Formatter\\MessageFormatterInterface' => $vendorDir . '/symfony/translation/Formatter/MessageFormatterInterface.php',
    522     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\IdentityTranslator' => $vendorDir . '/symfony/translation/IdentityTranslator.php',
    523     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Loader\\ArrayLoader' => $vendorDir . '/symfony/translation/Loader/ArrayLoader.php',
    524     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Loader\\CsvFileLoader' => $vendorDir . '/symfony/translation/Loader/CsvFileLoader.php',
    525     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Loader\\FileLoader' => $vendorDir . '/symfony/translation/Loader/FileLoader.php',
    526     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Loader\\IcuDatFileLoader' => $vendorDir . '/symfony/translation/Loader/IcuDatFileLoader.php',
    527     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Loader\\IcuResFileLoader' => $vendorDir . '/symfony/translation/Loader/IcuResFileLoader.php',
    528     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Loader\\IniFileLoader' => $vendorDir . '/symfony/translation/Loader/IniFileLoader.php',
    529     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Loader\\JsonFileLoader' => $vendorDir . '/symfony/translation/Loader/JsonFileLoader.php',
    530     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Loader\\LoaderInterface' => $vendorDir . '/symfony/translation/Loader/LoaderInterface.php',
    531     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Loader\\MoFileLoader' => $vendorDir . '/symfony/translation/Loader/MoFileLoader.php',
    532     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Loader\\PhpFileLoader' => $vendorDir . '/symfony/translation/Loader/PhpFileLoader.php',
    533     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Loader\\PoFileLoader' => $vendorDir . '/symfony/translation/Loader/PoFileLoader.php',
    534     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Loader\\QtFileLoader' => $vendorDir . '/symfony/translation/Loader/QtFileLoader.php',
    535     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Loader\\XliffFileLoader' => $vendorDir . '/symfony/translation/Loader/XliffFileLoader.php',
    536     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Loader\\YamlFileLoader' => $vendorDir . '/symfony/translation/Loader/YamlFileLoader.php',
    537     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\LoggingTranslator' => $vendorDir . '/symfony/translation/LoggingTranslator.php',
    538     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\MessageCatalogue' => $vendorDir . '/symfony/translation/MessageCatalogue.php',
    539     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\MessageCatalogueInterface' => $vendorDir . '/symfony/translation/MessageCatalogueInterface.php',
    540     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\MetadataAwareInterface' => $vendorDir . '/symfony/translation/MetadataAwareInterface.php',
    541     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Provider\\AbstractProviderFactory' => $vendorDir . '/symfony/translation/Provider/AbstractProviderFactory.php',
    542     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Provider\\Dsn' => $vendorDir . '/symfony/translation/Provider/Dsn.php',
    543     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Provider\\FilteringProvider' => $vendorDir . '/symfony/translation/Provider/FilteringProvider.php',
    544     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Provider\\NullProvider' => $vendorDir . '/symfony/translation/Provider/NullProvider.php',
    545     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Provider\\NullProviderFactory' => $vendorDir . '/symfony/translation/Provider/NullProviderFactory.php',
    546     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Provider\\ProviderFactoryInterface' => $vendorDir . '/symfony/translation/Provider/ProviderFactoryInterface.php',
    547     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Provider\\ProviderInterface' => $vendorDir . '/symfony/translation/Provider/ProviderInterface.php',
    548     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Provider\\TranslationProviderCollection' => $vendorDir . '/symfony/translation/Provider/TranslationProviderCollection.php',
    549     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Provider\\TranslationProviderCollectionFactory' => $vendorDir . '/symfony/translation/Provider/TranslationProviderCollectionFactory.php',
    550     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\PseudoLocalizationTranslator' => $vendorDir . '/symfony/translation/PseudoLocalizationTranslator.php',
    551     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Reader\\TranslationReader' => $vendorDir . '/symfony/translation/Reader/TranslationReader.php',
    552     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Reader\\TranslationReaderInterface' => $vendorDir . '/symfony/translation/Reader/TranslationReaderInterface.php',
    553     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Test\\ProviderFactoryTestCase' => $vendorDir . '/symfony/translation/Test/ProviderFactoryTestCase.php',
    554     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Test\\ProviderTestCase' => $vendorDir . '/symfony/translation/Test/ProviderTestCase.php',
    555     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\TranslatableMessage' => $vendorDir . '/symfony/translation/TranslatableMessage.php',
    556     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Translator' => $vendorDir . '/symfony/translation/Translator.php',
    557     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\TranslatorBag' => $vendorDir . '/symfony/translation/TranslatorBag.php',
    558     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\TranslatorBagInterface' => $vendorDir . '/symfony/translation/TranslatorBagInterface.php',
    559     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Util\\ArrayConverter' => $vendorDir . '/symfony/translation/Util/ArrayConverter.php',
    560     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Util\\XliffUtils' => $vendorDir . '/symfony/translation/Util/XliffUtils.php',
    561     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Writer\\TranslationWriter' => $vendorDir . '/symfony/translation/Writer/TranslationWriter.php',
    562     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Writer\\TranslationWriterInterface' => $vendorDir . '/symfony/translation/Writer/TranslationWriterInterface.php',
    563     'Dotdigital_WordPress_Vendor\\Symfony\\Contracts\\Translation\\LocaleAwareInterface' => $vendorDir . '/symfony/translation-contracts/LocaleAwareInterface.php',
    564     'Dotdigital_WordPress_Vendor\\Symfony\\Contracts\\Translation\\Test\\TranslatorTest' => $vendorDir . '/symfony/translation-contracts/Test/TranslatorTest.php',
    565     'Dotdigital_WordPress_Vendor\\Symfony\\Contracts\\Translation\\TranslatableInterface' => $vendorDir . '/symfony/translation-contracts/TranslatableInterface.php',
    566     'Dotdigital_WordPress_Vendor\\Symfony\\Contracts\\Translation\\TranslatorInterface' => $vendorDir . '/symfony/translation-contracts/TranslatorInterface.php',
    567     'Dotdigital_WordPress_Vendor\\Symfony\\Contracts\\Translation\\TranslatorTrait' => $vendorDir . '/symfony/translation-contracts/TranslatorTrait.php',
    568     'Dotdigital_WordPress_Vendor\\Symfony\\Polyfill\\Mbstring\\Mbstring' => $vendorDir . '/symfony/polyfill-mbstring/Mbstring.php',
    569402    'Dotdigital_WordPress_Vendor\\Symfony\\Polyfill\\Php73\\Php73' => $vendorDir . '/symfony/polyfill-php73/Php73.php',
    570403    'Dotdigital_WordPress_Vendor\\Symfony\\Polyfill\\Php80\\Php80' => $vendorDir . '/symfony/polyfill-php80/Php80.php',
  • dotmailer-sign-up-widget/trunk/vendor/composer/autoload_files.php

    r3041822 r3314722  
    99    'a4a119a56e50fbb293281d9a48007e0e' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php',
    1010    '6e3fae29631ef280660b3cdad06f25a8' => $vendorDir . '/symfony/deprecation-contracts/function.php',
    11     '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php',
    1211    '9c67151ae59aff4788964ce8eb2a0f43' => $vendorDir . '/clue/stream-filter/src/functions_include.php',
    1312    '0d59ee240a4cd96ddbb4ff164fccea4d' => $vendorDir . '/symfony/polyfill-php73/bootstrap.php',
    1413    '8cff32064859f4559445b89279f3199c' => $vendorDir . '/php-http/message/src/filters.php',
    1514    '7b11c4dc42b3b3023073cb14e519683c' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php',
    16     'a1105708a18b76903365ca1c4aa61b02' => $vendorDir . '/symfony/translation/Resources/functions.php',
    1715    '37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php',
    1816);
  • dotmailer-sign-up-widget/trunk/vendor/composer/autoload_psr4.php

    r3110990 r3314722  
    99    'Dotdigital_WordPress_Vendor\\Symfony\\Polyfill\\Php80\\' => array($vendorDir . '/symfony/polyfill-php80'),
    1010    'Dotdigital_WordPress_Vendor\\Symfony\\Polyfill\\Php73\\' => array($vendorDir . '/symfony/polyfill-php73'),
    11     'Dotdigital_WordPress_Vendor\\Symfony\\Polyfill\\Mbstring\\' => array($vendorDir . '/symfony/polyfill-mbstring'),
    12     'Dotdigital_WordPress_Vendor\\Symfony\\Contracts\\Translation\\' => array($vendorDir . '/symfony/translation-contracts'),
    13     'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\' => array($vendorDir . '/symfony/translation'),
    1411    'Dotdigital_WordPress_Vendor\\Symfony\\Component\\OptionsResolver\\' => array($vendorDir . '/symfony/options-resolver'),
    1512    'Dotdigital_WordPress_Vendor\\Psr\\Http\\Message\\' => array($vendorDir . '/psr/http-factory/src', $vendorDir . '/psr/http-message/src'),
    1613    'Dotdigital_WordPress_Vendor\\Psr\\Http\\Client\\' => array($vendorDir . '/psr/http-client/src'),
    17     'Dotdigital_WordPress_Vendor\\Psr\\Clock\\' => array($vendorDir . '/psr/clock/src'),
    1814    'Dotdigital_WordPress_Vendor\\Http\\Promise\\' => array($vendorDir . '/php-http/promise/src'),
    1915    'Dotdigital_WordPress_Vendor\\Http\\Message\\' => array($vendorDir . '/php-http/message/src'),
     
    2723    'Dotdigital_WordPress_Vendor\\Dotdigital\\' => array($vendorDir . '/dotdigital/dotdigital-php/src'),
    2824    'Dotdigital_WordPress_Vendor\\Clue\\StreamFilter\\' => array($vendorDir . '/clue/stream-filter/src'),
    29     'Dotdigital_WordPress_Vendor\\Carbon\\Doctrine\\' => array($vendorDir . '/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine'),
    30     'Dotdigital_WordPress_Vendor\\Carbon\\' => array($vendorDir . '/nesbot/carbon/src/Carbon'),
    3125);
  • dotmailer-sign-up-widget/trunk/vendor/composer/autoload_real.php

    r3150005 r3314722  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInitb933e4dec037358ff05515f1fd78e117
     5class ComposerAutoloaderInit19354b1666905663163f60760caf1917
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInitb933e4dec037358ff05515f1fd78e117', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInit19354b1666905663163f60760caf1917', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInitb933e4dec037358ff05515f1fd78e117', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInit19354b1666905663163f60760caf1917', 'loadClassLoader'));
    3030
    3131        require __DIR__ . '/autoload_static.php';
    32         call_user_func(\Composer\Autoload\ComposerStaticInitb933e4dec037358ff05515f1fd78e117::getInitializer($loader));
     32        call_user_func(\Composer\Autoload\ComposerStaticInit19354b1666905663163f60760caf1917::getInitializer($loader));
    3333
    3434        $loader->setClassMapAuthoritative(true);
    3535        $loader->register(true);
    3636
    37         $filesToLoad = \Composer\Autoload\ComposerStaticInitb933e4dec037358ff05515f1fd78e117::$files;
     37        $filesToLoad = \Composer\Autoload\ComposerStaticInit19354b1666905663163f60760caf1917::$files;
    3838        $requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
    3939            if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
  • dotmailer-sign-up-widget/trunk/vendor/composer/autoload_static.php

    r3255812 r3314722  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInitb933e4dec037358ff05515f1fd78e117
     7class ComposerStaticInit19354b1666905663163f60760caf1917
    88{
    99    public static $files = array (
    1010        'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',
    1111        '6e3fae29631ef280660b3cdad06f25a8' => __DIR__ . '/..' . '/symfony/deprecation-contracts/function.php',
    12         '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
    1312        '9c67151ae59aff4788964ce8eb2a0f43' => __DIR__ . '/..' . '/clue/stream-filter/src/functions_include.php',
    1413        '0d59ee240a4cd96ddbb4ff164fccea4d' => __DIR__ . '/..' . '/symfony/polyfill-php73/bootstrap.php',
    1514        '8cff32064859f4559445b89279f3199c' => __DIR__ . '/..' . '/php-http/message/src/filters.php',
    1615        '7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php',
    17         'a1105708a18b76903365ca1c4aa61b02' => __DIR__ . '/..' . '/symfony/translation/Resources/functions.php',
    1816        '37a3dc5111fe8f707ab4c132ef1dbc62' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php',
    1917    );
     
    2422            'Dotdigital_WordPress_Vendor\\Symfony\\Polyfill\\Php80\\' => 51,
    2523            'Dotdigital_WordPress_Vendor\\Symfony\\Polyfill\\Php73\\' => 51,
    26             'Dotdigital_WordPress_Vendor\\Symfony\\Polyfill\\Mbstring\\' => 54,
    27             'Dotdigital_WordPress_Vendor\\Symfony\\Contracts\\Translation\\' => 58,
    28             'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\' => 58,
    2924            'Dotdigital_WordPress_Vendor\\Symfony\\Component\\OptionsResolver\\' => 62,
    3025            'Dotdigital_WordPress_Vendor\\Psr\\Http\\Message\\' => 45,
    3126            'Dotdigital_WordPress_Vendor\\Psr\\Http\\Client\\' => 44,
    32             'Dotdigital_WordPress_Vendor\\Psr\\Clock\\' => 38,
    3327            'Dotdigital_WordPress_Vendor\\Http\\Promise\\' => 41,
    3428            'Dotdigital_WordPress_Vendor\\Http\\Message\\' => 41,
     
    4236            'Dotdigital_WordPress_Vendor\\Dotdigital\\' => 39,
    4337            'Dotdigital_WordPress_Vendor\\Clue\\StreamFilter\\' => 46,
    44             'Dotdigital_WordPress_Vendor\\Carbon\\Doctrine\\' => 44,
    45             'Dotdigital_WordPress_Vendor\\Carbon\\' => 35,
    4638        ),
    4739    );
     
    5648            0 => __DIR__ . '/..' . '/symfony/polyfill-php73',
    5749        ),
    58         'Dotdigital_WordPress_Vendor\\Symfony\\Polyfill\\Mbstring\\' =>
    59         array (
    60             0 => __DIR__ . '/..' . '/symfony/polyfill-mbstring',
    61         ),
    62         'Dotdigital_WordPress_Vendor\\Symfony\\Contracts\\Translation\\' =>
    63         array (
    64             0 => __DIR__ . '/..' . '/symfony/translation-contracts',
    65         ),
    66         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\' =>
    67         array (
    68             0 => __DIR__ . '/..' . '/symfony/translation',
    69         ),
    7050        'Dotdigital_WordPress_Vendor\\Symfony\\Component\\OptionsResolver\\' =>
    7151        array (
     
    8161            0 => __DIR__ . '/..' . '/psr/http-client/src',
    8262        ),
    83         'Dotdigital_WordPress_Vendor\\Psr\\Clock\\' =>
    84         array (
    85             0 => __DIR__ . '/..' . '/psr/clock/src',
    86         ),
    8763        'Dotdigital_WordPress_Vendor\\Http\\Promise\\' =>
    8864        array (
     
    128104        array (
    129105            0 => __DIR__ . '/..' . '/clue/stream-filter/src',
    130         ),
    131         'Dotdigital_WordPress_Vendor\\Carbon\\Doctrine\\' =>
    132         array (
    133             0 => __DIR__ . '/..' . '/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine',
    134         ),
    135         'Dotdigital_WordPress_Vendor\\Carbon\\' =>
    136         array (
    137             0 => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon',
    138106        ),
    139107    );
     
    185153        'Dotdigital_WordPress\\Pub\\Dotdigital_WordPress_Public' => __DIR__ . '/../..' . '/public/class-dotdigital-wordpress-public.php',
    186154        'Dotdigital_WordPress_Vendor\\Attribute' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/Attribute.php',
    187         'Dotdigital_WordPress_Vendor\\Carbon\\AbstractTranslator' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/AbstractTranslator.php',
    188         'Dotdigital_WordPress_Vendor\\Carbon\\Carbon' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Carbon.php',
    189         'Dotdigital_WordPress_Vendor\\Carbon\\CarbonConverterInterface' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/CarbonConverterInterface.php',
    190         'Dotdigital_WordPress_Vendor\\Carbon\\CarbonImmutable' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/CarbonImmutable.php',
    191         'Dotdigital_WordPress_Vendor\\Carbon\\CarbonInterface' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/CarbonInterface.php',
    192         'Dotdigital_WordPress_Vendor\\Carbon\\CarbonInterval' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/CarbonInterval.php',
    193         'Dotdigital_WordPress_Vendor\\Carbon\\CarbonPeriod' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/CarbonPeriod.php',
    194         'Dotdigital_WordPress_Vendor\\Carbon\\CarbonPeriodImmutable' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/CarbonPeriodImmutable.php',
    195         'Dotdigital_WordPress_Vendor\\Carbon\\CarbonTimeZone' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/CarbonTimeZone.php',
    196         'Dotdigital_WordPress_Vendor\\Carbon\\Cli\\Invoker' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Cli/Invoker.php',
    197         'Dotdigital_WordPress_Vendor\\Carbon\\Doctrine\\CarbonDoctrineType' => __DIR__ . '/..' . '/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine/CarbonDoctrineType.php',
    198         'Dotdigital_WordPress_Vendor\\Carbon\\Doctrine\\CarbonImmutableType' => __DIR__ . '/..' . '/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine/CarbonImmutableType.php',
    199         'Dotdigital_WordPress_Vendor\\Carbon\\Doctrine\\CarbonType' => __DIR__ . '/..' . '/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine/CarbonType.php',
    200         'Dotdigital_WordPress_Vendor\\Carbon\\Doctrine\\CarbonTypeConverter' => __DIR__ . '/..' . '/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine/CarbonTypeConverter.php',
    201         'Dotdigital_WordPress_Vendor\\Carbon\\Doctrine\\DateTimeDefaultPrecision' => __DIR__ . '/..' . '/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine/DateTimeDefaultPrecision.php',
    202         'Dotdigital_WordPress_Vendor\\Carbon\\Doctrine\\DateTimeImmutableType' => __DIR__ . '/..' . '/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine/DateTimeImmutableType.php',
    203         'Dotdigital_WordPress_Vendor\\Carbon\\Doctrine\\DateTimeType' => __DIR__ . '/..' . '/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine/DateTimeType.php',
    204         'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\BadComparisonUnitException' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Exceptions/BadComparisonUnitException.php',
    205         'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\BadFluentConstructorException' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Exceptions/BadFluentConstructorException.php',
    206         'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\BadFluentSetterException' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Exceptions/BadFluentSetterException.php',
    207         'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\BadMethodCallException' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Exceptions/BadMethodCallException.php',
    208         'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\EndLessPeriodException' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Exceptions/EndLessPeriodException.php',
    209         'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\Exception' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Exceptions/Exception.php',
    210         'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\ImmutableException' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Exceptions/ImmutableException.php',
    211         'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\InvalidArgumentException' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Exceptions/InvalidArgumentException.php',
    212         'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\InvalidCastException' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Exceptions/InvalidCastException.php',
    213         'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\InvalidDateException' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Exceptions/InvalidDateException.php',
    214         'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\InvalidFormatException' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Exceptions/InvalidFormatException.php',
    215         'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\InvalidIntervalException' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Exceptions/InvalidIntervalException.php',
    216         'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\InvalidPeriodDateException' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Exceptions/InvalidPeriodDateException.php',
    217         'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\InvalidPeriodParameterException' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Exceptions/InvalidPeriodParameterException.php',
    218         'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\InvalidTimeZoneException' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Exceptions/InvalidTimeZoneException.php',
    219         'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\InvalidTypeException' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Exceptions/InvalidTypeException.php',
    220         'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\NotACarbonClassException' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Exceptions/NotACarbonClassException.php',
    221         'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\NotAPeriodException' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Exceptions/NotAPeriodException.php',
    222         'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\NotLocaleAwareException' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Exceptions/NotLocaleAwareException.php',
    223         'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\OutOfRangeException' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Exceptions/OutOfRangeException.php',
    224         'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\ParseErrorException' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Exceptions/ParseErrorException.php',
    225         'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\RuntimeException' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Exceptions/RuntimeException.php',
    226         'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\UnitException' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Exceptions/UnitException.php',
    227         'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\UnitNotConfiguredException' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Exceptions/UnitNotConfiguredException.php',
    228         'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\UnknownGetterException' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Exceptions/UnknownGetterException.php',
    229         'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\UnknownMethodException' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Exceptions/UnknownMethodException.php',
    230         'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\UnknownSetterException' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Exceptions/UnknownSetterException.php',
    231         'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\UnknownUnitException' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Exceptions/UnknownUnitException.php',
    232         'Dotdigital_WordPress_Vendor\\Carbon\\Exceptions\\UnreachableException' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Exceptions/UnreachableException.php',
    233         'Dotdigital_WordPress_Vendor\\Carbon\\Factory' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Factory.php',
    234         'Dotdigital_WordPress_Vendor\\Carbon\\FactoryImmutable' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/FactoryImmutable.php',
    235         'Dotdigital_WordPress_Vendor\\Carbon\\Language' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Language.php',
    236         'Dotdigital_WordPress_Vendor\\Carbon\\Laravel\\ServiceProvider' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Laravel/ServiceProvider.php',
    237         'Dotdigital_WordPress_Vendor\\Carbon\\MessageFormatter\\MessageFormatterMapper' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/MessageFormatter/MessageFormatterMapper.php',
    238         'Dotdigital_WordPress_Vendor\\Carbon\\PHPStan\\AbstractMacro' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/PHPStan/AbstractMacro.php',
    239         'Dotdigital_WordPress_Vendor\\Carbon\\PHPStan\\Macro' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/PHPStan/Macro.php',
    240         'Dotdigital_WordPress_Vendor\\Carbon\\PHPStan\\MacroExtension' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/PHPStan/MacroExtension.php',
    241         'Dotdigital_WordPress_Vendor\\Carbon\\PHPStan\\MacroScanner' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/PHPStan/MacroScanner.php',
    242         'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Boundaries' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Boundaries.php',
    243         'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Cast' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Cast.php',
    244         'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Comparison' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Comparison.php',
    245         'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Converter' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Converter.php',
    246         'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Creator' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Creator.php',
    247         'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Date' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Date.php',
    248         'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\DeprecatedProperties' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/DeprecatedProperties.php',
    249         'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Difference' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Difference.php',
    250         'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\IntervalRounding' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/IntervalRounding.php',
    251         'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\IntervalStep' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/IntervalStep.php',
    252         'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Localization' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Localization.php',
    253         'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Macro' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Macro.php',
    254         'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\MagicParameter' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/MagicParameter.php',
    255         'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Mixin' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Mixin.php',
    256         'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Modifiers' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Modifiers.php',
    257         'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Mutability' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Mutability.php',
    258         'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\ObjectInitialisation' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/ObjectInitialisation.php',
    259         'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Options' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Options.php',
    260         'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Rounding' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Rounding.php',
    261         'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Serialization' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Serialization.php',
    262         'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Test' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Test.php',
    263         'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Timestamp' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Timestamp.php',
    264         'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\ToStringFormat' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/ToStringFormat.php',
    265         'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Units' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Units.php',
    266         'Dotdigital_WordPress_Vendor\\Carbon\\Traits\\Week' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Traits/Week.php',
    267         'Dotdigital_WordPress_Vendor\\Carbon\\Translator' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/Translator.php',
    268         'Dotdigital_WordPress_Vendor\\Carbon\\TranslatorImmutable' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/TranslatorImmutable.php',
    269         'Dotdigital_WordPress_Vendor\\Carbon\\TranslatorStrongTypeInterface' => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon/TranslatorStrongTypeInterface.php',
    270155        'Dotdigital_WordPress_Vendor\\Clue\\StreamFilter\\CallbackFilter' => __DIR__ . '/..' . '/clue/stream-filter/src/CallbackFilter.php',
    271156        'Dotdigital_WordPress_Vendor\\Dotdigital\\AbstractClient' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/AbstractClient.php',
     
    274159        'Dotdigital_WordPress_Vendor\\Dotdigital\\Exception\\MissingArgumentException' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/Exception/MissingArgumentException.php',
    275160        'Dotdigital_WordPress_Vendor\\Dotdigital\\Exception\\ResponseValidationException' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/Exception/ResponseValidationException.php',
     161        'Dotdigital_WordPress_Vendor\\Dotdigital\\Exception\\TooManyRequestsException' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/Exception/TooManyRequestsException.php',
    276162        'Dotdigital_WordPress_Vendor\\Dotdigital\\Exception\\ValidationException' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/Exception/ValidationException.php',
    277163        'Dotdigital_WordPress_Vendor\\Dotdigital\\HttpClient\\Message\\V2\\ResponseMediator' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/HttpClient/Message/V2/ResponseMediator.php',
     
    308194        'Dotdigital_WordPress_Vendor\\Dotdigital\\V2\\Resources\\Surveys' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/V2/Resources/Surveys.php',
    309195        'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Client' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/V3/Client.php',
     196        'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\AbstractImportModel' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/V3/Models/AbstractImportModel.php',
    310197        'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\AbstractSingletonModel' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/V3/Models/AbstractSingletonModel.php',
    311198        'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\Collection' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/V3/Models/Collection.php',
     
    321208        'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\Contact\\Import' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/V3/Models/Contact/Import.php',
    322209        'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\Contact\\Import\\Failure' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/V3/Models/Contact/Import/Failure.php',
    323         'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\Contact\\Import\\FailureCollection' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/V3/Models/Contact/Import/FailureCollection.php',
    324         'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\Contact\\Import\\FailureDetail' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/V3/Models/Contact/Import/FailureDetail.php',
    325         'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\Contact\\Import\\FailureDetailCollection' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/V3/Models/Contact/Import/FailureDetailCollection.php',
     210        'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\Contact\\Import\\Failure\\FailureDetail' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/V3/Models/Contact/Import/Failure/FailureDetail.php',
     211        'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\Contact\\Import\\Failure\\FailureDetailCollection' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/V3/Models/Contact/Import/Failure/FailureDetailCollection.php',
    326212        'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\Contact\\Import\\Summary' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/V3/Models/Contact/Import/Summary.php',
    327213        'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\Contact\\Preference' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/V3/Models/Contact/Preference.php',
    328214        'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\DataFieldCollection' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/V3/Models/DataFieldCollection.php',
     215        'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\Import\\FailureCollectionInterface' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/V3/Models/Import/FailureCollectionInterface.php',
     216        'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\Import\\FailureInterface' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/V3/Models/Import/FailureInterface.php',
     217        'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\Import\\Failure\\FailureCollection' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/V3/Models/Import/Failure/FailureCollection.php',
     218        'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\Import\\ImportInterface' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/V3/Models/Import/ImportInterface.php',
     219        'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\Import\\SummaryInterface' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/V3/Models/Import/SummaryInterface.php',
    329220        'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\InsightData' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/V3/Models/InsightData.php',
    330         'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\InsightData\\ContactIdentity' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/V3/Models/InsightData/ContactIdentity.php',
     221        'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\InsightData\\CollectionOwner' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/V3/Models/InsightData/CollectionOwner.php',
     222        'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\InsightData\\Import' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/V3/Models/InsightData/Import.php',
     223        'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\InsightData\\Import\\Failure' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/V3/Models/InsightData/Import/Failure.php',
     224        'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\InsightData\\Import\\Summary' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/V3/Models/InsightData/Import/Summary.php',
     225        'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\InsightData\\InsightDataIdentity' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/V3/Models/InsightData/InsightDataIdentity.php',
    331226        'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\InsightData\\Record' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/V3/Models/InsightData/Record.php',
    332227        'Dotdigital_WordPress_Vendor\\Dotdigital\\V3\\Models\\InsightData\\RecordsCollection' => __DIR__ . '/..' . '/dotdigital/dotdigital-php/src/V3/Models/InsightData/RecordsCollection.php',
     
    575470        'Dotdigital_WordPress_Vendor\\JsonException' => __DIR__ . '/..' . '/symfony/polyfill-php73/Resources/stubs/JsonException.php',
    576471        'Dotdigital_WordPress_Vendor\\PhpToken' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php',
    577         'Dotdigital_WordPress_Vendor\\Psr\\Clock\\ClockInterface' => __DIR__ . '/..' . '/psr/clock/src/ClockInterface.php',
    578472        'Dotdigital_WordPress_Vendor\\Psr\\Http\\Client\\ClientExceptionInterface' => __DIR__ . '/..' . '/psr/http-client/src/ClientExceptionInterface.php',
    579473        'Dotdigital_WordPress_Vendor\\Psr\\Http\\Client\\ClientInterface' => __DIR__ . '/..' . '/psr/http-client/src/ClientInterface.php',
     
    607501        'Dotdigital_WordPress_Vendor\\Symfony\\Component\\OptionsResolver\\Options' => __DIR__ . '/..' . '/symfony/options-resolver/Options.php',
    608502        'Dotdigital_WordPress_Vendor\\Symfony\\Component\\OptionsResolver\\OptionsResolver' => __DIR__ . '/..' . '/symfony/options-resolver/OptionsResolver.php',
    609         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Catalogue\\AbstractOperation' => __DIR__ . '/..' . '/symfony/translation/Catalogue/AbstractOperation.php',
    610         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Catalogue\\MergeOperation' => __DIR__ . '/..' . '/symfony/translation/Catalogue/MergeOperation.php',
    611         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Catalogue\\OperationInterface' => __DIR__ . '/..' . '/symfony/translation/Catalogue/OperationInterface.php',
    612         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Catalogue\\TargetOperation' => __DIR__ . '/..' . '/symfony/translation/Catalogue/TargetOperation.php',
    613         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Command\\TranslationPullCommand' => __DIR__ . '/..' . '/symfony/translation/Command/TranslationPullCommand.php',
    614         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Command\\TranslationPushCommand' => __DIR__ . '/..' . '/symfony/translation/Command/TranslationPushCommand.php',
    615         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Command\\TranslationTrait' => __DIR__ . '/..' . '/symfony/translation/Command/TranslationTrait.php',
    616         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Command\\XliffLintCommand' => __DIR__ . '/..' . '/symfony/translation/Command/XliffLintCommand.php',
    617         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\DataCollectorTranslator' => __DIR__ . '/..' . '/symfony/translation/DataCollectorTranslator.php',
    618         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\DataCollector\\TranslationDataCollector' => __DIR__ . '/..' . '/symfony/translation/DataCollector/TranslationDataCollector.php',
    619         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\DependencyInjection\\TranslationDumperPass' => __DIR__ . '/..' . '/symfony/translation/DependencyInjection/TranslationDumperPass.php',
    620         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\DependencyInjection\\TranslationExtractorPass' => __DIR__ . '/..' . '/symfony/translation/DependencyInjection/TranslationExtractorPass.php',
    621         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\DependencyInjection\\TranslatorPass' => __DIR__ . '/..' . '/symfony/translation/DependencyInjection/TranslatorPass.php',
    622         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\DependencyInjection\\TranslatorPathsPass' => __DIR__ . '/..' . '/symfony/translation/DependencyInjection/TranslatorPathsPass.php',
    623         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Dumper\\CsvFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/CsvFileDumper.php',
    624         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Dumper\\DumperInterface' => __DIR__ . '/..' . '/symfony/translation/Dumper/DumperInterface.php',
    625         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Dumper\\FileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/FileDumper.php',
    626         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Dumper\\IcuResFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/IcuResFileDumper.php',
    627         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Dumper\\IniFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/IniFileDumper.php',
    628         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Dumper\\JsonFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/JsonFileDumper.php',
    629         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Dumper\\MoFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/MoFileDumper.php',
    630         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Dumper\\PhpFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/PhpFileDumper.php',
    631         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Dumper\\PoFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/PoFileDumper.php',
    632         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Dumper\\QtFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/QtFileDumper.php',
    633         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Dumper\\XliffFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/XliffFileDumper.php',
    634         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Dumper\\YamlFileDumper' => __DIR__ . '/..' . '/symfony/translation/Dumper/YamlFileDumper.php',
    635         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Exception\\ExceptionInterface' => __DIR__ . '/..' . '/symfony/translation/Exception/ExceptionInterface.php',
    636         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Exception\\IncompleteDsnException' => __DIR__ . '/..' . '/symfony/translation/Exception/IncompleteDsnException.php',
    637         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/symfony/translation/Exception/InvalidArgumentException.php',
    638         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Exception\\InvalidResourceException' => __DIR__ . '/..' . '/symfony/translation/Exception/InvalidResourceException.php',
    639         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Exception\\LogicException' => __DIR__ . '/..' . '/symfony/translation/Exception/LogicException.php',
    640         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Exception\\MissingRequiredOptionException' => __DIR__ . '/..' . '/symfony/translation/Exception/MissingRequiredOptionException.php',
    641         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Exception\\NotFoundResourceException' => __DIR__ . '/..' . '/symfony/translation/Exception/NotFoundResourceException.php',
    642         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Exception\\ProviderException' => __DIR__ . '/..' . '/symfony/translation/Exception/ProviderException.php',
    643         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Exception\\ProviderExceptionInterface' => __DIR__ . '/..' . '/symfony/translation/Exception/ProviderExceptionInterface.php',
    644         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Exception\\RuntimeException' => __DIR__ . '/..' . '/symfony/translation/Exception/RuntimeException.php',
    645         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Exception\\UnsupportedSchemeException' => __DIR__ . '/..' . '/symfony/translation/Exception/UnsupportedSchemeException.php',
    646         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Extractor\\AbstractFileExtractor' => __DIR__ . '/..' . '/symfony/translation/Extractor/AbstractFileExtractor.php',
    647         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Extractor\\ChainExtractor' => __DIR__ . '/..' . '/symfony/translation/Extractor/ChainExtractor.php',
    648         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Extractor\\ExtractorInterface' => __DIR__ . '/..' . '/symfony/translation/Extractor/ExtractorInterface.php',
    649         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Extractor\\PhpExtractor' => __DIR__ . '/..' . '/symfony/translation/Extractor/PhpExtractor.php',
    650         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Extractor\\PhpStringTokenParser' => __DIR__ . '/..' . '/symfony/translation/Extractor/PhpStringTokenParser.php',
    651         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Formatter\\IntlFormatter' => __DIR__ . '/..' . '/symfony/translation/Formatter/IntlFormatter.php',
    652         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Formatter\\IntlFormatterInterface' => __DIR__ . '/..' . '/symfony/translation/Formatter/IntlFormatterInterface.php',
    653         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Formatter\\MessageFormatter' => __DIR__ . '/..' . '/symfony/translation/Formatter/MessageFormatter.php',
    654         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Formatter\\MessageFormatterInterface' => __DIR__ . '/..' . '/symfony/translation/Formatter/MessageFormatterInterface.php',
    655         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\IdentityTranslator' => __DIR__ . '/..' . '/symfony/translation/IdentityTranslator.php',
    656         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Loader\\ArrayLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/ArrayLoader.php',
    657         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Loader\\CsvFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/CsvFileLoader.php',
    658         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Loader\\FileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/FileLoader.php',
    659         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Loader\\IcuDatFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/IcuDatFileLoader.php',
    660         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Loader\\IcuResFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/IcuResFileLoader.php',
    661         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Loader\\IniFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/IniFileLoader.php',
    662         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Loader\\JsonFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/JsonFileLoader.php',
    663         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Loader\\LoaderInterface' => __DIR__ . '/..' . '/symfony/translation/Loader/LoaderInterface.php',
    664         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Loader\\MoFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/MoFileLoader.php',
    665         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Loader\\PhpFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/PhpFileLoader.php',
    666         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Loader\\PoFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/PoFileLoader.php',
    667         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Loader\\QtFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/QtFileLoader.php',
    668         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Loader\\XliffFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/XliffFileLoader.php',
    669         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Loader\\YamlFileLoader' => __DIR__ . '/..' . '/symfony/translation/Loader/YamlFileLoader.php',
    670         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\LoggingTranslator' => __DIR__ . '/..' . '/symfony/translation/LoggingTranslator.php',
    671         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\MessageCatalogue' => __DIR__ . '/..' . '/symfony/translation/MessageCatalogue.php',
    672         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\MessageCatalogueInterface' => __DIR__ . '/..' . '/symfony/translation/MessageCatalogueInterface.php',
    673         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\MetadataAwareInterface' => __DIR__ . '/..' . '/symfony/translation/MetadataAwareInterface.php',
    674         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Provider\\AbstractProviderFactory' => __DIR__ . '/..' . '/symfony/translation/Provider/AbstractProviderFactory.php',
    675         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Provider\\Dsn' => __DIR__ . '/..' . '/symfony/translation/Provider/Dsn.php',
    676         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Provider\\FilteringProvider' => __DIR__ . '/..' . '/symfony/translation/Provider/FilteringProvider.php',
    677         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Provider\\NullProvider' => __DIR__ . '/..' . '/symfony/translation/Provider/NullProvider.php',
    678         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Provider\\NullProviderFactory' => __DIR__ . '/..' . '/symfony/translation/Provider/NullProviderFactory.php',
    679         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Provider\\ProviderFactoryInterface' => __DIR__ . '/..' . '/symfony/translation/Provider/ProviderFactoryInterface.php',
    680         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Provider\\ProviderInterface' => __DIR__ . '/..' . '/symfony/translation/Provider/ProviderInterface.php',
    681         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Provider\\TranslationProviderCollection' => __DIR__ . '/..' . '/symfony/translation/Provider/TranslationProviderCollection.php',
    682         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Provider\\TranslationProviderCollectionFactory' => __DIR__ . '/..' . '/symfony/translation/Provider/TranslationProviderCollectionFactory.php',
    683         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\PseudoLocalizationTranslator' => __DIR__ . '/..' . '/symfony/translation/PseudoLocalizationTranslator.php',
    684         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Reader\\TranslationReader' => __DIR__ . '/..' . '/symfony/translation/Reader/TranslationReader.php',
    685         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Reader\\TranslationReaderInterface' => __DIR__ . '/..' . '/symfony/translation/Reader/TranslationReaderInterface.php',
    686         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Test\\ProviderFactoryTestCase' => __DIR__ . '/..' . '/symfony/translation/Test/ProviderFactoryTestCase.php',
    687         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Test\\ProviderTestCase' => __DIR__ . '/..' . '/symfony/translation/Test/ProviderTestCase.php',
    688         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\TranslatableMessage' => __DIR__ . '/..' . '/symfony/translation/TranslatableMessage.php',
    689         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Translator' => __DIR__ . '/..' . '/symfony/translation/Translator.php',
    690         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\TranslatorBag' => __DIR__ . '/..' . '/symfony/translation/TranslatorBag.php',
    691         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\TranslatorBagInterface' => __DIR__ . '/..' . '/symfony/translation/TranslatorBagInterface.php',
    692         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Util\\ArrayConverter' => __DIR__ . '/..' . '/symfony/translation/Util/ArrayConverter.php',
    693         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Util\\XliffUtils' => __DIR__ . '/..' . '/symfony/translation/Util/XliffUtils.php',
    694         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Writer\\TranslationWriter' => __DIR__ . '/..' . '/symfony/translation/Writer/TranslationWriter.php',
    695         'Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\Writer\\TranslationWriterInterface' => __DIR__ . '/..' . '/symfony/translation/Writer/TranslationWriterInterface.php',
    696         'Dotdigital_WordPress_Vendor\\Symfony\\Contracts\\Translation\\LocaleAwareInterface' => __DIR__ . '/..' . '/symfony/translation-contracts/LocaleAwareInterface.php',
    697         'Dotdigital_WordPress_Vendor\\Symfony\\Contracts\\Translation\\Test\\TranslatorTest' => __DIR__ . '/..' . '/symfony/translation-contracts/Test/TranslatorTest.php',
    698         'Dotdigital_WordPress_Vendor\\Symfony\\Contracts\\Translation\\TranslatableInterface' => __DIR__ . '/..' . '/symfony/translation-contracts/TranslatableInterface.php',
    699         'Dotdigital_WordPress_Vendor\\Symfony\\Contracts\\Translation\\TranslatorInterface' => __DIR__ . '/..' . '/symfony/translation-contracts/TranslatorInterface.php',
    700         'Dotdigital_WordPress_Vendor\\Symfony\\Contracts\\Translation\\TranslatorTrait' => __DIR__ . '/..' . '/symfony/translation-contracts/TranslatorTrait.php',
    701         'Dotdigital_WordPress_Vendor\\Symfony\\Polyfill\\Mbstring\\Mbstring' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/Mbstring.php',
    702503        'Dotdigital_WordPress_Vendor\\Symfony\\Polyfill\\Php73\\Php73' => __DIR__ . '/..' . '/symfony/polyfill-php73/Php73.php',
    703504        'Dotdigital_WordPress_Vendor\\Symfony\\Polyfill\\Php80\\Php80' => __DIR__ . '/..' . '/symfony/polyfill-php80/Php80.php',
     
    711512    {
    712513        return \Closure::bind(function () use ($loader) {
    713             $loader->prefixLengthsPsr4 = ComposerStaticInitb933e4dec037358ff05515f1fd78e117::$prefixLengthsPsr4;
    714             $loader->prefixDirsPsr4 = ComposerStaticInitb933e4dec037358ff05515f1fd78e117::$prefixDirsPsr4;
    715             $loader->classMap = ComposerStaticInitb933e4dec037358ff05515f1fd78e117::$classMap;
     514            $loader->prefixLengthsPsr4 = ComposerStaticInit19354b1666905663163f60760caf1917::$prefixLengthsPsr4;
     515            $loader->prefixDirsPsr4 = ComposerStaticInit19354b1666905663163f60760caf1917::$prefixDirsPsr4;
     516            $loader->classMap = ComposerStaticInit19354b1666905663163f60760caf1917::$classMap;
    716517
    717518        }, null, ClassLoader::class);
  • dotmailer-sign-up-widget/trunk/vendor/composer/installed.json

    r3150005 r3314722  
    11{
    22    "packages": [
    3         {
    4             "name": "carbonphp\/carbon-doctrine-types",
    5             "version": "2.1.0",
    6             "version_normalized": "2.1.0.0",
    7             "source": {
    8                 "type": "git",
    9                 "url": "https:\/\/github.com\/CarbonPHP\/carbon-doctrine-types.git",
    10                 "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
    11             },
    12             "dist": {
    13                 "type": "zip",
    14                 "url": "https:\/\/api.github.com\/repos\/CarbonPHP\/carbon-doctrine-types\/zipball\/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
    15                 "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
    16                 "shasum": ""
    17             },
    18             "require": {
    19                 "php": "^7.4 || ^8.0"
    20             },
    21             "conflict": {
    22                 "doctrine\/dbal": "<3.7.0 || >=4.0.0"
    23             },
    24             "require-dev": {
    25                 "doctrine\/dbal": "^3.7.0",
    26                 "nesbot\/carbon": "^2.71.0 || ^3.0.0",
    27                 "phpunit\/phpunit": "^10.3"
    28             },
    29             "time": "2023-12-11T17:09:12+00:00",
    30             "type": "library",
    31             "installation-source": "dist",
    32             "autoload": {
    33                 "psr-4": {
    34                     "Dotdigital_WordPress_Vendor\\Carbon\\Doctrine\\": "src\/Carbon\/Doctrine\/"
    35                 }
    36             },
    37             "notification-url": "https:\/\/packagist.org\/downloads\/",
    38             "license": [
    39                 "MIT"
    40             ],
    41             "authors": [
    42                 {
    43                     "name": "KyleKatarn",
    44                     "email": "kylekatarnls@gmail.com"
    45                 }
    46             ],
    47             "description": "Types to use Carbon in Doctrine",
    48             "keywords": [
    49                 "carbon",
    50                 "date",
    51                 "datetime",
    52                 "doctrine",
    53                 "time"
    54             ],
    55             "support": {
    56                 "issues": "https:\/\/github.com\/CarbonPHP\/carbon-doctrine-types\/issues",
    57                 "source": "https:\/\/github.com\/CarbonPHP\/carbon-doctrine-types\/tree\/2.1.0"
    58             },
    59             "funding": [
    60                 {
    61                     "url": "https:\/\/github.com\/kylekatarnls",
    62                     "type": "github"
    63                 },
    64                 {
    65                     "url": "https:\/\/opencollective.com\/Carbon",
    66                     "type": "open_collective"
    67                 },
    68                 {
    69                     "url": "https:\/\/tidelift.com\/funding\/github\/packagist\/nesbot\/carbon",
    70                     "type": "tidelift"
    71                 }
    72             ],
    73             "install-path": "..\/carbonphp\/carbon-doctrine-types"
    74         },
    753        {
    764            "name": "clue\/stream-filter",
     
    14472        {
    14573            "name": "dotdigital\/dotdigital-php",
    146             "version": "2.4.1",
    147             "version_normalized": "2.4.1.0",
     74            "version": "2.6.1",
     75            "version_normalized": "2.6.1.0",
    14876            "source": {
    14977                "type": "git",
    15078                "url": "https:\/\/github.com\/dotmailer\/dotdigital-php.git",
    151                 "reference": "6f8f3ea1f01a5ffe2410be8e1c9de59a950ed8cc"
    152             },
    153             "dist": {
    154                 "type": "zip",
    155                 "url": "https:\/\/api.github.com\/repos\/dotmailer\/dotdigital-php\/zipball\/6f8f3ea1f01a5ffe2410be8e1c9de59a950ed8cc",
    156                 "reference": "6f8f3ea1f01a5ffe2410be8e1c9de59a950ed8cc",
     79                "reference": "35f521ab2ac6c904850105b94ac3573014d4fc32"
     80            },
     81            "dist": {
     82                "type": "zip",
     83                "url": "https:\/\/api.github.com\/repos\/dotmailer\/dotdigital-php\/zipball\/35f521ab2ac6c904850105b94ac3573014d4fc32",
     84                "reference": "35f521ab2ac6c904850105b94ac3573014d4fc32",
    15785                "shasum": ""
    15886            },
    15987            "require": {
    16088                "ext-json": "*",
    161                 "nesbot\/carbon": "^2.67",
    16289                "php": "^7.4 || ^8.0",
    16390                "php-http\/client-common": "^2.4",
     
    175102                "symplify\/easy-coding-standard": "^9.4"
    176103            },
    177             "time": "2024-06-28T13:28:30+00:00",
     104            "time": "2025-04-08T14:55:52+00:00",
    178105            "type": "library",
    179106            "installation-source": "dist",
     
    190117            "support": {
    191118                "issues": "https:\/\/github.com\/dotmailer\/dotdigital-php\/issues",
    192                 "source": "https:\/\/github.com\/dotmailer\/dotdigital-php\/tree\/v2.4.1"
     119                "source": "https:\/\/github.com\/dotmailer\/dotdigital-php\/tree\/v2.6.1"
    193120            },
    194121            "install-path": "..\/dotdigital\/dotdigital-php"
     
    196123        {
    197124            "name": "guzzlehttp\/guzzle",
    198             "version": "7.9.2",
    199             "version_normalized": "7.9.2.0",
     125            "version": "7.9.3",
     126            "version_normalized": "7.9.3.0",
    200127            "source": {
    201128                "type": "git",
    202129                "url": "https:\/\/github.com\/guzzle\/guzzle.git",
    203                 "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
    204             },
    205             "dist": {
    206                 "type": "zip",
    207                 "url": "https:\/\/api.github.com\/repos\/guzzle\/guzzle\/zipball\/d281ed313b989f213357e3be1a179f02196ac99b",
    208                 "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
     130                "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77"
     131            },
     132            "dist": {
     133                "type": "zip",
     134                "url": "https:\/\/api.github.com\/repos\/guzzle\/guzzle\/zipball\/7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
     135                "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
    209136                "shasum": ""
    210137            },
     
    233160                "psr\/log": "Required for using the Log middleware"
    234161            },
    235             "time": "2024-07-24T11:22:20+00:00",
     162            "time": "2025-03-27T13:37:11+00:00",
    236163            "type": "library",
    237164            "extra": {
     
    305232            "support": {
    306233                "issues": "https:\/\/github.com\/guzzle\/guzzle\/issues",
    307                 "source": "https:\/\/github.com\/guzzle\/guzzle\/tree\/7.9.2"
     234                "source": "https:\/\/github.com\/guzzle\/guzzle\/tree\/7.9.3"
    308235            },
    309236            "funding": [
     
    325252        {
    326253            "name": "guzzlehttp\/promises",
    327             "version": "2.0.3",
    328             "version_normalized": "2.0.3.0",
     254            "version": "2.2.0",
     255            "version_normalized": "2.2.0.0",
    329256            "source": {
    330257                "type": "git",
    331258                "url": "https:\/\/github.com\/guzzle\/promises.git",
    332                 "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8"
    333             },
    334             "dist": {
    335                 "type": "zip",
    336                 "url": "https:\/\/api.github.com\/repos\/guzzle\/promises\/zipball\/6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8",
    337                 "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8",
     259                "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c"
     260            },
     261            "dist": {
     262                "type": "zip",
     263                "url": "https:\/\/api.github.com\/repos\/guzzle\/promises\/zipball\/7c69f28996b0a6920945dd20b3857e499d9ca96c",
     264                "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c",
    338265                "shasum": ""
    339266            },
     
    345272                "phpunit\/phpunit": "^8.5.39 || ^9.6.20"
    346273            },
    347             "time": "2024-07-18T10:29:17+00:00",
     274            "time": "2025-03-27T13:27:01+00:00",
    348275            "type": "library",
    349276            "extra": {
     
    391318            "support": {
    392319                "issues": "https:\/\/github.com\/guzzle\/promises\/issues",
    393                 "source": "https:\/\/github.com\/guzzle\/promises\/tree\/2.0.3"
     320                "source": "https:\/\/github.com\/guzzle\/promises\/tree\/2.2.0"
    394321            },
    395322            "funding": [
     
    411338        {
    412339            "name": "guzzlehttp\/psr7",
    413             "version": "2.7.0",
    414             "version_normalized": "2.7.0.0",
     340            "version": "2.7.1",
     341            "version_normalized": "2.7.1.0",
    415342            "source": {
    416343                "type": "git",
    417344                "url": "https:\/\/github.com\/guzzle\/psr7.git",
    418                 "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
    419             },
    420             "dist": {
    421                 "type": "zip",
    422                 "url": "https:\/\/api.github.com\/repos\/guzzle\/psr7\/zipball\/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
    423                 "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
     345                "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16"
     346            },
     347            "dist": {
     348                "type": "zip",
     349                "url": "https:\/\/api.github.com\/repos\/guzzle\/psr7\/zipball\/c2270caaabe631b3b44c85f99e5a04bbb8060d16",
     350                "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16",
    424351                "shasum": ""
    425352            },
     
    442369                "laminas\/laminas-httphandlerrunner": "Emit PSR-7 responses"
    443370            },
    444             "time": "2024-07-18T11:15:46+00:00",
     371            "time": "2025-03-27T12:30:47+00:00",
    445372            "type": "library",
    446373            "extra": {
     
    510437            "support": {
    511438                "issues": "https:\/\/github.com\/guzzle\/psr7\/issues",
    512                 "source": "https:\/\/github.com\/guzzle\/psr7\/tree\/2.7.0"
     439                "source": "https:\/\/github.com\/guzzle\/psr7\/tree\/2.7.1"
    513440            },
    514441            "funding": [
     
    529456        },
    530457        {
    531             "name": "nesbot\/carbon",
    532             "version": "2.72.5",
    533             "version_normalized": "2.72.5.0",
    534             "source": {
    535                 "type": "git",
    536                 "url": "https:\/\/github.com\/briannesbitt\/Carbon.git",
    537                 "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
    538             },
    539             "dist": {
    540                 "type": "zip",
    541                 "url": "https:\/\/api.github.com\/repos\/briannesbitt\/Carbon\/zipball\/afd46589c216118ecd48ff2b95d77596af1e57ed",
    542                 "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
    543                 "shasum": ""
    544             },
    545             "require": {
    546                 "carbonphp\/carbon-doctrine-types": "*",
    547                 "ext-json": "*",
    548                 "php": "^7.1.8 || ^8.0",
    549                 "psr\/clock": "^1.0",
    550                 "symfony\/polyfill-mbstring": "^1.0",
    551                 "symfony\/polyfill-php80": "^1.16",
    552                 "symfony\/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
    553             },
    554             "provide": {
    555                 "psr\/clock-implementation": "1.0"
    556             },
    557             "require-dev": {
    558                 "doctrine\/dbal": "^2.0 || ^3.1.4 || ^4.0",
    559                 "doctrine\/orm": "^2.7 || ^3.0",
    560                 "friendsofphp\/php-cs-fixer": "^3.0",
    561                 "kylekatarnls\/multi-tester": "^2.0",
    562                 "ondrejmirtes\/better-reflection": "*",
    563                 "phpmd\/phpmd": "^2.9",
    564                 "phpstan\/extension-installer": "^1.0",
    565                 "phpstan\/phpstan": "^0.12.99 || ^1.7.14",
    566                 "phpunit\/php-file-iterator": "^2.0.5 || ^3.0.6",
    567                 "phpunit\/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
    568                 "squizlabs\/php_codesniffer": "^3.4"
    569             },
    570             "time": "2024-06-03T19:18:41+00:00",
    571             "bin": [
    572                 "bin\/carbon"
    573             ],
    574             "type": "library",
    575             "extra": {
    576                 "branch-alias": {
    577                     "dev-master": "3.x-dev",
    578                     "dev-2.x": "2.x-dev"
    579                 },
    580                 "laravel": {
    581                     "providers": [
    582                         "Dotdigital_WordPress_Vendor\\Carbon\\Laravel\\ServiceProvider"
    583                     ]
    584                 },
    585                 "phpstan": {
    586                     "includes": [
    587                         "extension.neon"
    588                     ]
    589                 }
    590             },
    591             "installation-source": "dist",
    592             "autoload": {
    593                 "psr-4": {
    594                     "Dotdigital_WordPress_Vendor\\Carbon\\": "src\/Carbon\/"
    595                 }
    596             },
    597             "notification-url": "https:\/\/packagist.org\/downloads\/",
    598             "license": [
    599                 "MIT"
    600             ],
    601             "authors": [
    602                 {
    603                     "name": "Brian Nesbitt",
    604                     "email": "brian@nesbot.com",
    605                     "homepage": "https:\/\/markido.com"
    606                 },
    607                 {
    608                     "name": "kylekatarnls",
    609                     "homepage": "https:\/\/github.com\/kylekatarnls"
    610                 }
    611             ],
    612             "description": "An API extension for DateTime that supports 281 different languages.",
    613             "homepage": "https:\/\/carbon.nesbot.com",
    614             "keywords": [
    615                 "date",
    616                 "datetime",
    617                 "time"
    618             ],
    619             "support": {
    620                 "docs": "https:\/\/carbon.nesbot.com\/docs",
    621                 "issues": "https:\/\/github.com\/briannesbitt\/Carbon\/issues",
    622                 "source": "https:\/\/github.com\/briannesbitt\/Carbon"
    623             },
    624             "funding": [
    625                 {
    626                     "url": "https:\/\/github.com\/sponsors\/kylekatarnls",
    627                     "type": "github"
    628                 },
    629                 {
    630                     "url": "https:\/\/opencollective.com\/Carbon#sponsor",
    631                     "type": "opencollective"
    632                 },
    633                 {
    634                     "url": "https:\/\/tidelift.com\/subscription\/pkg\/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
    635                     "type": "tidelift"
    636                 }
    637             ],
    638             "install-path": "..\/nesbot\/carbon"
    639         },
    640         {
    641458            "name": "php-http\/client-common",
    642             "version": "2.7.1",
    643             "version_normalized": "2.7.1.0",
     459            "version": "2.7.2",
     460            "version_normalized": "2.7.2.0",
    644461            "source": {
    645462                "type": "git",
    646463                "url": "https:\/\/github.com\/php-http\/client-common.git",
    647                 "reference": "1e19c059b0e4d5f717bf5d524d616165aeab0612"
    648             },
    649             "dist": {
    650                 "type": "zip",
    651                 "url": "https:\/\/api.github.com\/repos\/php-http\/client-common\/zipball\/1e19c059b0e4d5f717bf5d524d616165aeab0612",
    652                 "reference": "1e19c059b0e4d5f717bf5d524d616165aeab0612",
     464                "reference": "0cfe9858ab9d3b213041b947c881d5b19ceeca46"
     465            },
     466            "dist": {
     467                "type": "zip",
     468                "url": "https:\/\/api.github.com\/repos\/php-http\/client-common\/zipball\/0cfe9858ab9d3b213041b947c881d5b19ceeca46",
     469                "reference": "0cfe9858ab9d3b213041b947c881d5b19ceeca46",
    653470                "shasum": ""
    654471            },
     
    678495                "php-http\/stopwatch-plugin": "Symfony Stopwatch plugin"
    679496            },
    680             "time": "2023-11-30T10:31:25+00:00",
     497            "time": "2024-09-24T06:21:48+00:00",
    681498            "type": "library",
    682499            "installation-source": "dist",
     
    706523            "support": {
    707524                "issues": "https:\/\/github.com\/php-http\/client-common\/issues",
    708                 "source": "https:\/\/github.com\/php-http\/client-common\/tree\/2.7.1"
     525                "source": "https:\/\/github.com\/php-http\/client-common\/tree\/2.7.2"
    709526            },
    710527            "install-path": "..\/php-http\/client-common"
     
    712529        {
    713530            "name": "php-http\/curl-client",
    714             "version": "2.3.2",
    715             "version_normalized": "2.3.2.0",
     531            "version": "2.3.3",
     532            "version_normalized": "2.3.3.0",
    716533            "source": {
    717534                "type": "git",
    718535                "url": "https:\/\/github.com\/php-http\/curl-client.git",
    719                 "reference": "0b869922458b1cde9137374545ed4fff7ac83623"
    720             },
    721             "dist": {
    722                 "type": "zip",
    723                 "url": "https:\/\/api.github.com\/repos\/php-http\/curl-client\/zipball\/0b869922458b1cde9137374545ed4fff7ac83623",
    724                 "reference": "0b869922458b1cde9137374545ed4fff7ac83623",
     536                "reference": "f3eb48d266341afec0229a7a37a03521d3646b81"
     537            },
     538            "dist": {
     539                "type": "zip",
     540                "url": "https:\/\/api.github.com\/repos\/php-http\/curl-client\/zipball\/f3eb48d266341afec0229a7a37a03521d3646b81",
     541                "reference": "f3eb48d266341afec0229a7a37a03521d3646b81",
    725542                "shasum": ""
    726543            },
     
    742559            "require-dev": {
    743560                "guzzlehttp\/psr7": "^2.0",
    744                 "laminas\/laminas-diactoros": "^2.0",
     561                "laminas\/laminas-diactoros": "^2.0 || ^3.0",
    745562                "php-http\/client-integration-tests": "^3.0",
    746563                "php-http\/message-factory": "^1.1",
    747564                "phpunit\/phpunit": "^7.5 || ^9.4"
    748565            },
    749             "time": "2024-03-03T08:21:07+00:00",
     566            "time": "2024-10-31T07:36:58+00:00",
    750567            "type": "library",
    751568            "installation-source": "dist",
     
    774591            "support": {
    775592                "issues": "https:\/\/github.com\/php-http\/curl-client\/issues",
    776                 "source": "https:\/\/github.com\/php-http\/curl-client\/tree\/2.3.2"
     593                "source": "https:\/\/github.com\/php-http\/curl-client\/tree\/2.3.3"
    777594            },
    778595            "install-path": "..\/php-http\/curl-client"
     
    780597        {
    781598            "name": "php-http\/discovery",
    782             "version": "1.19.4",
    783             "version_normalized": "1.19.4.0",
     599            "version": "1.20.0",
     600            "version_normalized": "1.20.0.0",
    784601            "source": {
    785602                "type": "git",
    786603                "url": "https:\/\/github.com\/php-http\/discovery.git",
    787                 "reference": "0700efda8d7526335132360167315fdab3aeb599"
    788             },
    789             "dist": {
    790                 "type": "zip",
    791                 "url": "https:\/\/api.github.com\/repos\/php-http\/discovery\/zipball\/0700efda8d7526335132360167315fdab3aeb599",
    792                 "reference": "0700efda8d7526335132360167315fdab3aeb599",
     604                "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d"
     605            },
     606            "dist": {
     607                "type": "zip",
     608                "url": "https:\/\/api.github.com\/repos\/php-http\/discovery\/zipball\/82fe4c73ef3363caed49ff8dd1539ba06044910d",
     609                "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d",
    793610                "shasum": ""
    794611            },
     
    817634                "symfony\/phpunit-bridge": "^6.4.4 || ^7.0.1"
    818635            },
    819             "time": "2024-03-29T13:00:05+00:00",
     636            "time": "2024-10-02T11:20:13+00:00",
    820637            "type": "composer-plugin",
    821638            "extra": {
     
    856673            "support": {
    857674                "issues": "https:\/\/github.com\/php-http\/discovery\/issues",
    858                 "source": "https:\/\/github.com\/php-http\/discovery\/tree\/1.19.4"
     675                "source": "https:\/\/github.com\/php-http\/discovery\/tree\/1.20.0"
    859676            },
    860677            "install-path": "..\/php-http\/discovery"
     
    862679        {
    863680            "name": "php-http\/httplug",
    864             "version": "2.4.0",
    865             "version_normalized": "2.4.0.0",
     681            "version": "2.4.1",
     682            "version_normalized": "2.4.1.0",
    866683            "source": {
    867684                "type": "git",
    868685                "url": "https:\/\/github.com\/php-http\/httplug.git",
    869                 "reference": "625ad742c360c8ac580fcc647a1541d29e257f67"
    870             },
    871             "dist": {
    872                 "type": "zip",
    873                 "url": "https:\/\/api.github.com\/repos\/php-http\/httplug\/zipball\/625ad742c360c8ac580fcc647a1541d29e257f67",
    874                 "reference": "625ad742c360c8ac580fcc647a1541d29e257f67",
     686                "reference": "5cad731844891a4c282f3f3e1b582c46839d22f4"
     687            },
     688            "dist": {
     689                "type": "zip",
     690                "url": "https:\/\/api.github.com\/repos\/php-http\/httplug\/zipball\/5cad731844891a4c282f3f3e1b582c46839d22f4",
     691                "reference": "5cad731844891a4c282f3f3e1b582c46839d22f4",
    875692                "shasum": ""
    876693            },
     
    885702                "phpspec\/phpspec": "^5.1 || ^6.0 || ^7.0"
    886703            },
    887             "time": "2023-04-14T15:10:03+00:00",
     704            "time": "2024-09-23T11:39:58+00:00",
    888705            "type": "library",
    889706            "installation-source": "dist",
     
    916733            "support": {
    917734                "issues": "https:\/\/github.com\/php-http\/httplug\/issues",
    918                 "source": "https:\/\/github.com\/php-http\/httplug\/tree\/2.4.0"
     735                "source": "https:\/\/github.com\/php-http\/httplug\/tree\/2.4.1"
    919736            },
    920737            "install-path": "..\/php-http\/httplug"
     
    922739        {
    923740            "name": "php-http\/message",
    924             "version": "1.16.1",
    925             "version_normalized": "1.16.1.0",
     741            "version": "1.16.2",
     742            "version_normalized": "1.16.2.0",
    926743            "source": {
    927744                "type": "git",
    928745                "url": "https:\/\/github.com\/php-http\/message.git",
    929                 "reference": "5997f3289332c699fa2545c427826272498a2088"
    930             },
    931             "dist": {
    932                 "type": "zip",
    933                 "url": "https:\/\/api.github.com\/repos\/php-http\/message\/zipball\/5997f3289332c699fa2545c427826272498a2088",
    934                 "reference": "5997f3289332c699fa2545c427826272498a2088",
     746                "reference": "06dd5e8562f84e641bf929bfe699ee0f5ce8080a"
     747            },
     748            "dist": {
     749                "type": "zip",
     750                "url": "https:\/\/api.github.com\/repos\/php-http\/message\/zipball\/06dd5e8562f84e641bf929bfe699ee0f5ce8080a",
     751                "reference": "06dd5e8562f84e641bf929bfe699ee0f5ce8080a",
    935752                "shasum": ""
    936753            },
     
    958775                "slim\/slim": "Used with Slim Framework PSR-7 implementation"
    959776            },
    960             "time": "2024-03-07T13:22:09+00:00",
     777            "time": "2024-10-02T11:34:13+00:00",
    961778            "type": "library",
    962779            "installation-source": "dist",
     
    988805            "support": {
    989806                "issues": "https:\/\/github.com\/php-http\/message\/issues",
    990                 "source": "https:\/\/github.com\/php-http\/message\/tree\/1.16.1"
     807                "source": "https:\/\/github.com\/php-http\/message\/tree\/1.16.2"
    991808            },
    992809            "install-path": "..\/php-http\/message"
     
    1046863            },
    1047864            "install-path": "..\/php-http\/promise"
    1048         },
    1049         {
    1050             "name": "psr\/clock",
    1051             "version": "1.0.0",
    1052             "version_normalized": "1.0.0.0",
    1053             "source": {
    1054                 "type": "git",
    1055                 "url": "https:\/\/github.com\/php-fig\/clock.git",
    1056                 "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
    1057             },
    1058             "dist": {
    1059                 "type": "zip",
    1060                 "url": "https:\/\/api.github.com\/repos\/php-fig\/clock\/zipball\/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
    1061                 "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
    1062                 "shasum": ""
    1063             },
    1064             "require": {
    1065                 "php": "^7.0 || ^8.0"
    1066             },
    1067             "time": "2022-11-25T14:36:26+00:00",
    1068             "type": "library",
    1069             "installation-source": "dist",
    1070             "autoload": {
    1071                 "psr-4": {
    1072                     "Dotdigital_WordPress_Vendor\\Psr\\Clock\\": "src\/"
    1073                 }
    1074             },
    1075             "notification-url": "https:\/\/packagist.org\/downloads\/",
    1076             "license": [
    1077                 "MIT"
    1078             ],
    1079             "authors": [
    1080                 {
    1081                     "name": "PHP-FIG",
    1082                     "homepage": "https:\/\/www.php-fig.org\/"
    1083                 }
    1084             ],
    1085             "description": "Common interface for reading the clock.",
    1086             "homepage": "https:\/\/github.com\/php-fig\/clock",
    1087             "keywords": [
    1088                 "clock",
    1089                 "now",
    1090                 "psr",
    1091                 "psr-20",
    1092                 "time"
    1093             ],
    1094             "support": {
    1095                 "issues": "https:\/\/github.com\/php-fig\/clock\/issues",
    1096                 "source": "https:\/\/github.com\/php-fig\/clock\/tree\/1.0.0"
    1097             },
    1098             "install-path": "..\/psr\/clock"
    1099865        },
    1100866        {
     
    13161082        {
    13171083            "name": "symfony\/deprecation-contracts",
    1318             "version": "v2.5.3",
    1319             "version_normalized": "2.5.3.0",
     1084            "version": "v2.5.4",
     1085            "version_normalized": "2.5.4.0",
    13201086            "source": {
    13211087                "type": "git",
    13221088                "url": "https:\/\/github.com\/symfony\/deprecation-contracts.git",
    1323                 "reference": "80d075412b557d41002320b96a096ca65aa2c98d"
    1324             },
    1325             "dist": {
    1326                 "type": "zip",
    1327                 "url": "https:\/\/api.github.com\/repos\/symfony\/deprecation-contracts\/zipball\/80d075412b557d41002320b96a096ca65aa2c98d",
    1328                 "reference": "80d075412b557d41002320b96a096ca65aa2c98d",
     1089                "reference": "605389f2a7e5625f273b53960dc46aeaf9c62918"
     1090            },
     1091            "dist": {
     1092                "type": "zip",
     1093                "url": "https:\/\/api.github.com\/repos\/symfony\/deprecation-contracts\/zipball\/605389f2a7e5625f273b53960dc46aeaf9c62918",
     1094                "reference": "605389f2a7e5625f273b53960dc46aeaf9c62918",
    13291095                "shasum": ""
    13301096            },
     
    13321098                "php": ">=7.1"
    13331099            },
    1334             "time": "2023-01-24T14:02:46+00:00",
     1100            "time": "2024-09-25T14:11:13+00:00",
    13351101            "type": "library",
    13361102            "extra": {
     1103                "thanks": {
     1104                    "url": "https:\/\/github.com\/symfony\/contracts",
     1105                    "name": "symfony\/contracts"
     1106                },
    13371107                "branch-alias": {
    13381108                    "dev-main": "2.5-dev"
    1339                 },
    1340                 "thanks": {
    1341                     "name": "symfony\/contracts",
    1342                     "url": "https:\/\/github.com\/symfony\/contracts"
    13431109                }
    13441110            },
     
    13661132            "homepage": "https:\/\/symfony.com",
    13671133            "support": {
    1368                 "source": "https:\/\/github.com\/symfony\/deprecation-contracts\/tree\/v2.5.3"
     1134                "source": "https:\/\/github.com\/symfony\/deprecation-contracts\/tree\/v2.5.4"
    13691135            },
    13701136            "funding": [
     
    13861152        {
    13871153            "name": "symfony\/options-resolver",
    1388             "version": "v5.4.40",
    1389             "version_normalized": "5.4.40.0",
     1154            "version": "v5.4.45",
     1155            "version_normalized": "5.4.45.0",
    13901156            "source": {
    13911157                "type": "git",
    13921158                "url": "https:\/\/github.com\/symfony\/options-resolver.git",
    1393                 "reference": "bd1afbde6613a8d6b956115e0e14b196191fd0c4"
    1394             },
    1395             "dist": {
    1396                 "type": "zip",
    1397                 "url": "https:\/\/api.github.com\/repos\/symfony\/options-resolver\/zipball\/bd1afbde6613a8d6b956115e0e14b196191fd0c4",
    1398                 "reference": "bd1afbde6613a8d6b956115e0e14b196191fd0c4",
     1159                "reference": "74e5b6f0db3e8589e6cfd5efb317a1fc2bb52fb6"
     1160            },
     1161            "dist": {
     1162                "type": "zip",
     1163                "url": "https:\/\/api.github.com\/repos\/symfony\/options-resolver\/zipball\/74e5b6f0db3e8589e6cfd5efb317a1fc2bb52fb6",
     1164                "reference": "74e5b6f0db3e8589e6cfd5efb317a1fc2bb52fb6",
    13991165                "shasum": ""
    14001166            },
     
    14051171                "symfony\/polyfill-php80": "^1.16"
    14061172            },
    1407             "time": "2024-05-31T14:33:22+00:00",
     1173            "time": "2024-09-25T14:11:13+00:00",
    14081174            "type": "library",
    14091175            "installation-source": "dist",
     
    14381204            ],
    14391205            "support": {
    1440                 "source": "https:\/\/github.com\/symfony\/options-resolver\/tree\/v5.4.40"
     1206                "source": "https:\/\/github.com\/symfony\/options-resolver\/tree\/v5.4.45"
    14411207            },
    14421208            "funding": [
     
    14571223        },
    14581224        {
    1459             "name": "symfony\/polyfill-mbstring",
    1460             "version": "v1.31.0",
    1461             "version_normalized": "1.31.0.0",
    1462             "source": {
    1463                 "type": "git",
    1464                 "url": "https:\/\/github.com\/symfony\/polyfill-mbstring.git",
    1465                 "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
    1466             },
    1467             "dist": {
    1468                 "type": "zip",
    1469                 "url": "https:\/\/api.github.com\/repos\/symfony\/polyfill-mbstring\/zipball\/85181ba99b2345b0ef10ce42ecac37612d9fd341",
    1470                 "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
     1225            "name": "symfony\/polyfill-php73",
     1226            "version": "v1.32.0",
     1227            "version_normalized": "1.32.0.0",
     1228            "source": {
     1229                "type": "git",
     1230                "url": "https:\/\/github.com\/symfony\/polyfill-php73.git",
     1231                "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
     1232            },
     1233            "dist": {
     1234                "type": "zip",
     1235                "url": "https:\/\/api.github.com\/repos\/symfony\/polyfill-php73\/zipball\/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
     1236                "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
    14711237                "shasum": ""
    14721238            },
    14731239            "require": {
    14741240                "php": ">=7.2"
    1475             },
    1476             "provide": {
    1477                 "ext-mbstring": "*"
    1478             },
    1479             "suggest": {
    1480                 "ext-mbstring": "For best performance"
    14811241            },
    14821242            "time": "2024-09-09T11:45:10+00:00",
     
    14841244            "extra": {
    14851245                "thanks": {
    1486                     "name": "symfony\/polyfill",
    1487                     "url": "https:\/\/github.com\/symfony\/polyfill"
    1488                 }
    1489             },
    1490             "installation-source": "dist",
    1491             "autoload": {
    1492                 "files": [
    1493                     "bootstrap.php"
    1494                 ],
    1495                 "psr-4": {
    1496                     "Dotdigital_WordPress_Vendor\\Symfony\\Polyfill\\Mbstring\\": ""
    1497                 }
    1498             },
    1499             "notification-url": "https:\/\/packagist.org\/downloads\/",
    1500             "license": [
    1501                 "MIT"
    1502             ],
    1503             "authors": [
    1504                 {
    1505                     "name": "Nicolas Grekas",
    1506                     "email": "p@tchwork.com"
    1507                 },
    1508                 {
    1509                     "name": "Symfony Community",
    1510                     "homepage": "https:\/\/symfony.com\/contributors"
    1511                 }
    1512             ],
    1513             "description": "Symfony polyfill for the Mbstring extension",
    1514             "homepage": "https:\/\/symfony.com",
    1515             "keywords": [
    1516                 "compatibility",
    1517                 "mbstring",
    1518                 "polyfill",
    1519                 "portable",
    1520                 "shim"
    1521             ],
    1522             "support": {
    1523                 "source": "https:\/\/github.com\/symfony\/polyfill-mbstring\/tree\/v1.31.0"
    1524             },
    1525             "funding": [
    1526                 {
    1527                     "url": "https:\/\/symfony.com\/sponsor",
    1528                     "type": "custom"
    1529                 },
    1530                 {
    1531                     "url": "https:\/\/github.com\/fabpot",
    1532                     "type": "github"
    1533                 },
    1534                 {
    1535                     "url": "https:\/\/tidelift.com\/funding\/github\/packagist\/symfony\/symfony",
    1536                     "type": "tidelift"
    1537                 }
    1538             ],
    1539             "install-path": "..\/symfony\/polyfill-mbstring"
    1540         },
    1541         {
    1542             "name": "symfony\/polyfill-php73",
    1543             "version": "v1.31.0",
    1544             "version_normalized": "1.31.0.0",
    1545             "source": {
    1546                 "type": "git",
    1547                 "url": "https:\/\/github.com\/symfony\/polyfill-php73.git",
    1548                 "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
    1549             },
    1550             "dist": {
    1551                 "type": "zip",
    1552                 "url": "https:\/\/api.github.com\/repos\/symfony\/polyfill-php73\/zipball\/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
    1553                 "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
    1554                 "shasum": ""
    1555             },
    1556             "require": {
    1557                 "php": ">=7.2"
    1558             },
    1559             "time": "2024-09-09T11:45:10+00:00",
    1560             "type": "library",
    1561             "extra": {
    1562                 "thanks": {
    1563                     "name": "symfony\/polyfill",
    1564                     "url": "https:\/\/github.com\/symfony\/polyfill"
     1246                    "url": "https:\/\/github.com\/symfony\/polyfill",
     1247                    "name": "symfony\/polyfill"
    15651248                }
    15661249            },
     
    16001283            ],
    16011284            "support": {
    1602                 "source": "https:\/\/github.com\/symfony\/polyfill-php73\/tree\/v1.31.0"
     1285                "source": "https:\/\/github.com\/symfony\/polyfill-php73\/tree\/v1.32.0"
    16031286            },
    16041287            "funding": [
     
    16201303        {
    16211304            "name": "symfony\/polyfill-php80",
    1622             "version": "v1.31.0",
    1623             "version_normalized": "1.31.0.0",
     1305            "version": "v1.32.0",
     1306            "version_normalized": "1.32.0.0",
    16241307            "source": {
    16251308                "type": "git",
    16261309                "url": "https:\/\/github.com\/symfony\/polyfill-php80.git",
    1627                 "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
    1628             },
    1629             "dist": {
    1630                 "type": "zip",
    1631                 "url": "https:\/\/api.github.com\/repos\/symfony\/polyfill-php80\/zipball\/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
    1632                 "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
     1310                "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
     1311            },
     1312            "dist": {
     1313                "type": "zip",
     1314                "url": "https:\/\/api.github.com\/repos\/symfony\/polyfill-php80\/zipball\/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
     1315                "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
    16331316                "shasum": ""
    16341317            },
     
    16361319                "php": ">=7.2"
    16371320            },
    1638             "time": "2024-09-09T11:45:10+00:00",
     1321            "time": "2025-01-02T08:10:11+00:00",
    16391322            "type": "library",
    16401323            "extra": {
    16411324                "thanks": {
    1642                     "name": "symfony\/polyfill",
    1643                     "url": "https:\/\/github.com\/symfony\/polyfill"
     1325                    "url": "https:\/\/github.com\/symfony\/polyfill",
     1326                    "name": "symfony\/polyfill"
    16441327                }
    16451328            },
     
    16831366            ],
    16841367            "support": {
    1685                 "source": "https:\/\/github.com\/symfony\/polyfill-php80\/tree\/v1.31.0"
     1368                "source": "https:\/\/github.com\/symfony\/polyfill-php80\/tree\/v1.32.0"
    16861369            },
    16871370            "funding": [
     
    17001383            ],
    17011384            "install-path": "..\/symfony\/polyfill-php80"
    1702         },
    1703         {
    1704             "name": "symfony\/translation",
    1705             "version": "v5.4.42",
    1706             "version_normalized": "5.4.42.0",
    1707             "source": {
    1708                 "type": "git",
    1709                 "url": "https:\/\/github.com\/symfony\/translation.git",
    1710                 "reference": "1d702caccb9f091b738696185f778b1bfef7b5b2"
    1711             },
    1712             "dist": {
    1713                 "type": "zip",
    1714                 "url": "https:\/\/api.github.com\/repos\/symfony\/translation\/zipball\/1d702caccb9f091b738696185f778b1bfef7b5b2",
    1715                 "reference": "1d702caccb9f091b738696185f778b1bfef7b5b2",
    1716                 "shasum": ""
    1717             },
    1718             "require": {
    1719                 "php": ">=7.2.5",
    1720                 "symfony\/deprecation-contracts": "^2.1|^3",
    1721                 "symfony\/polyfill-mbstring": "~1.0",
    1722                 "symfony\/polyfill-php80": "^1.16",
    1723                 "symfony\/translation-contracts": "^2.3"
    1724             },
    1725             "conflict": {
    1726                 "symfony\/config": "<4.4",
    1727                 "symfony\/console": "<5.3",
    1728                 "symfony\/dependency-injection": "<5.0",
    1729                 "symfony\/http-kernel": "<5.0",
    1730                 "symfony\/twig-bundle": "<5.0",
    1731                 "symfony\/yaml": "<4.4"
    1732             },
    1733             "provide": {
    1734                 "symfony\/translation-implementation": "2.3"
    1735             },
    1736             "require-dev": {
    1737                 "psr\/log": "^1|^2|^3",
    1738                 "symfony\/config": "^4.4|^5.0|^6.0",
    1739                 "symfony\/console": "^5.4|^6.0",
    1740                 "symfony\/dependency-injection": "^5.0|^6.0",
    1741                 "symfony\/finder": "^4.4|^5.0|^6.0",
    1742                 "symfony\/http-client-contracts": "^1.1|^2.0|^3.0",
    1743                 "symfony\/http-kernel": "^5.0|^6.0",
    1744                 "symfony\/intl": "^4.4|^5.0|^6.0",
    1745                 "symfony\/polyfill-intl-icu": "^1.21",
    1746                 "symfony\/service-contracts": "^1.1.2|^2|^3",
    1747                 "symfony\/yaml": "^4.4|^5.0|^6.0"
    1748             },
    1749             "suggest": {
    1750                 "psr\/log-implementation": "To use logging capability in translator",
    1751                 "symfony\/config": "",
    1752                 "symfony\/yaml": ""
    1753             },
    1754             "time": "2024-07-26T12:14:19+00:00",
    1755             "type": "library",
    1756             "installation-source": "dist",
    1757             "autoload": {
    1758                 "files": [
    1759                     "Resources\/functions.php"
    1760                 ],
    1761                 "psr-4": {
    1762                     "Dotdigital_WordPress_Vendor\\Symfony\\Component\\Translation\\": ""
    1763                 },
    1764                 "exclude-from-classmap": [
    1765                     "\/Tests\/"
    1766                 ]
    1767             },
    1768             "notification-url": "https:\/\/packagist.org\/downloads\/",
    1769             "license": [
    1770                 "MIT"
    1771             ],
    1772             "authors": [
    1773                 {
    1774                     "name": "Fabien Potencier",
    1775                     "email": "fabien@symfony.com"
    1776                 },
    1777                 {
    1778                     "name": "Symfony Community",
    1779                     "homepage": "https:\/\/symfony.com\/contributors"
    1780                 }
    1781             ],
    1782             "description": "Provides tools to internationalize your application",
    1783             "homepage": "https:\/\/symfony.com",
    1784             "support": {
    1785                 "source": "https:\/\/github.com\/symfony\/translation\/tree\/v5.4.42"
    1786             },
    1787             "funding": [
    1788                 {
    1789                     "url": "https:\/\/symfony.com\/sponsor",
    1790                     "type": "custom"
    1791                 },
    1792                 {
    1793                     "url": "https:\/\/github.com\/fabpot",
    1794                     "type": "github"
    1795                 },
    1796                 {
    1797                     "url": "https:\/\/tidelift.com\/funding\/github\/packagist\/symfony\/symfony",
    1798                     "type": "tidelift"
    1799                 }
    1800             ],
    1801             "install-path": "..\/symfony\/translation"
    1802         },
    1803         {
    1804             "name": "symfony\/translation-contracts",
    1805             "version": "v2.5.3",
    1806             "version_normalized": "2.5.3.0",
    1807             "source": {
    1808                 "type": "git",
    1809                 "url": "https:\/\/github.com\/symfony\/translation-contracts.git",
    1810                 "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664"
    1811             },
    1812             "dist": {
    1813                 "type": "zip",
    1814                 "url": "https:\/\/api.github.com\/repos\/symfony\/translation-contracts\/zipball\/b0073a77ac0b7ea55131020e87b1e3af540f4664",
    1815                 "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664",
    1816                 "shasum": ""
    1817             },
    1818             "require": {
    1819                 "php": ">=7.2.5"
    1820             },
    1821             "suggest": {
    1822                 "symfony\/translation-implementation": ""
    1823             },
    1824             "time": "2024-01-23T13:51:25+00:00",
    1825             "type": "library",
    1826             "extra": {
    1827                 "branch-alias": {
    1828                     "dev-main": "2.5-dev"
    1829                 },
    1830                 "thanks": {
    1831                     "name": "symfony\/contracts",
    1832                     "url": "https:\/\/github.com\/symfony\/contracts"
    1833                 }
    1834             },
    1835             "installation-source": "dist",
    1836             "autoload": {
    1837                 "psr-4": {
    1838                     "Dotdigital_WordPress_Vendor\\Symfony\\Contracts\\Translation\\": ""
    1839                 }
    1840             },
    1841             "notification-url": "https:\/\/packagist.org\/downloads\/",
    1842             "license": [
    1843                 "MIT"
    1844             ],
    1845             "authors": [
    1846                 {
    1847                     "name": "Nicolas Grekas",
    1848                     "email": "p@tchwork.com"
    1849                 },
    1850                 {
    1851                     "name": "Symfony Community",
    1852                     "homepage": "https:\/\/symfony.com\/contributors"
    1853                 }
    1854             ],
    1855             "description": "Generic abstractions related to translation",
    1856             "homepage": "https:\/\/symfony.com",
    1857             "keywords": [
    1858                 "abstractions",
    1859                 "contracts",
    1860                 "decoupling",
    1861                 "interfaces",
    1862                 "interoperability",
    1863                 "standards"
    1864             ],
    1865             "support": {
    1866                 "source": "https:\/\/github.com\/symfony\/translation-contracts\/tree\/v2.5.3"
    1867             },
    1868             "funding": [
    1869                 {
    1870                     "url": "https:\/\/symfony.com\/sponsor",
    1871                     "type": "custom"
    1872                 },
    1873                 {
    1874                     "url": "https:\/\/github.com\/fabpot",
    1875                     "type": "github"
    1876                 },
    1877                 {
    1878                     "url": "https:\/\/tidelift.com\/funding\/github\/packagist\/symfony\/symfony",
    1879                     "type": "tidelift"
    1880                 }
    1881             ],
    1882             "install-path": "..\/symfony\/translation-contracts"
    18831385        }
    18841386    ],
  • dotmailer-sign-up-widget/trunk/vendor/composer/installed.php

    r3255812 r3314722  
    33namespace Dotdigital_WordPress_Vendor;
    44
    5 return array('root' => array('name' => 'dotdigital/dotdigital-for-wordpress', 'pretty_version' => '7.3.0', 'version' => '7.3.0.0', 'reference' => null, 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev' => \false), 'versions' => array('carbonphp/carbon-doctrine-types' => array('pretty_version' => '2.1.0', 'version' => '2.1.0.0', 'reference' => '99f76ffa36cce3b70a4a6abce41dba15ca2e84cb', 'type' => 'library', 'install_path' => __DIR__ . '/../carbonphp/carbon-doctrine-types', 'aliases' => array(), 'dev_requirement' => \false), 'clue/stream-filter' => array('pretty_version' => 'v1.7.0', 'version' => '1.7.0.0', 'reference' => '049509fef80032cb3f051595029ab75b49a3c2f7', 'type' => 'library', 'install_path' => __DIR__ . '/../clue/stream-filter', 'aliases' => array(), 'dev_requirement' => \false), 'dotdigital/dotdigital-for-wordpress' => array('pretty_version' => '7.3.0', 'version' => '7.3.0.0', 'reference' => null, 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev_requirement' => \false), 'dotdigital/dotdigital-php' => array('pretty_version' => '2.4.1', 'version' => '2.4.1.0', 'reference' => '6f8f3ea1f01a5ffe2410be8e1c9de59a950ed8cc', 'type' => 'library', 'install_path' => __DIR__ . '/../dotdigital/dotdigital-php', 'aliases' => array(), 'dev_requirement' => \false), 'guzzlehttp/guzzle' => array('pretty_version' => '7.9.2', 'version' => '7.9.2.0', 'reference' => 'd281ed313b989f213357e3be1a179f02196ac99b', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/guzzle', 'aliases' => array(), 'dev_requirement' => \false), 'guzzlehttp/promises' => array('pretty_version' => '2.0.3', 'version' => '2.0.3.0', 'reference' => '6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/promises', 'aliases' => array(), 'dev_requirement' => \false), 'guzzlehttp/psr7' => array('pretty_version' => '2.7.0', 'version' => '2.7.0.0', 'reference' => 'a70f5c95fb43bc83f07c9c948baa0dc1829bf201', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/psr7', 'aliases' => array(), 'dev_requirement' => \false), 'nesbot/carbon' => array('pretty_version' => '2.72.5', 'version' => '2.72.5.0', 'reference' => 'afd46589c216118ecd48ff2b95d77596af1e57ed', 'type' => 'library', 'install_path' => __DIR__ . '/../nesbot/carbon', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/async-client-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '*', 1 => '1.0')), 'php-http/client-common' => array('pretty_version' => '2.7.1', 'version' => '2.7.1.0', 'reference' => '1e19c059b0e4d5f717bf5d524d616165aeab0612', 'type' => 'library', 'install_path' => __DIR__ . '/../php-http/client-common', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/client-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '*', 1 => '1.0')), 'php-http/curl-client' => array('pretty_version' => '2.3.2', 'version' => '2.3.2.0', 'reference' => '0b869922458b1cde9137374545ed4fff7ac83623', 'type' => 'library', 'install_path' => __DIR__ . '/../php-http/curl-client', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/discovery' => array('pretty_version' => '1.19.4', 'version' => '1.19.4.0', 'reference' => '0700efda8d7526335132360167315fdab3aeb599', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../php-http/discovery', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/httplug' => array('pretty_version' => '2.4.0', 'version' => '2.4.0.0', 'reference' => '625ad742c360c8ac580fcc647a1541d29e257f67', 'type' => 'library', 'install_path' => __DIR__ . '/../php-http/httplug', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/message' => array('pretty_version' => '1.16.1', 'version' => '1.16.1.0', 'reference' => '5997f3289332c699fa2545c427826272498a2088', 'type' => 'library', 'install_path' => __DIR__ . '/../php-http/message', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/message-factory-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'php-http/promise' => array('pretty_version' => '1.3.1', 'version' => '1.3.1.0', 'reference' => 'fc85b1fba37c169a69a07ef0d5a8075770cc1f83', 'type' => 'library', 'install_path' => __DIR__ . '/../php-http/promise', 'aliases' => array(), 'dev_requirement' => \false), 'psr/clock' => array('pretty_version' => '1.0.0', 'version' => '1.0.0.0', 'reference' => 'e41a24703d4560fd0acb709162f73b8adfc3aa0d', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/clock', 'aliases' => array(), 'dev_requirement' => \false), 'psr/clock-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'psr/http-client' => array('pretty_version' => '1.0.3', 'version' => '1.0.3.0', 'reference' => 'bb5906edc1c324c9a05aa0873d40117941e5fa90', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-client', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-client-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '*', 1 => '1.0')), 'psr/http-factory' => array('pretty_version' => '1.1.0', 'version' => '1.1.0.0', 'reference' => '2b4765fddfe3b508ac62f829e852b1501d3f6e8a', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-factory', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-factory-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '*', 1 => '1.0')), 'psr/http-message' => array('pretty_version' => '2.0', 'version' => '2.0.0.0', 'reference' => '402d35bcb92c70c026d1a6a9883f06b2ead23d71', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-message', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-message-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '*', 1 => '1.0')), 'ralouphie/getallheaders' => array('pretty_version' => '3.0.3', 'version' => '3.0.3.0', 'reference' => '120b605dfeb996808c31b6477290a714d356e822', 'type' => 'library', 'install_path' => __DIR__ . '/../ralouphie/getallheaders', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/deprecation-contracts' => array('pretty_version' => 'v2.5.3', 'version' => '2.5.3.0', 'reference' => '80d075412b557d41002320b96a096ca65aa2c98d', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/deprecation-contracts', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/options-resolver' => array('pretty_version' => 'v5.4.40', 'version' => '5.4.40.0', 'reference' => 'bd1afbde6613a8d6b956115e0e14b196191fd0c4', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/options-resolver', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-mbstring' => array('pretty_version' => 'v1.31.0', 'version' => '1.31.0.0', 'reference' => '85181ba99b2345b0ef10ce42ecac37612d9fd341', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-mbstring', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-php73' => array('pretty_version' => 'v1.31.0', 'version' => '1.31.0.0', 'reference' => '0f68c03565dcaaf25a890667542e8bd75fe7e5bb', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php73', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-php80' => array('pretty_version' => 'v1.31.0', 'version' => '1.31.0.0', 'reference' => '60328e362d4c2c802a54fcbf04f9d3fb892b4cf8', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php80', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation' => array('pretty_version' => 'v5.4.42', 'version' => '5.4.42.0', 'reference' => '1d702caccb9f091b738696185f778b1bfef7b5b2', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/translation', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation-contracts' => array('pretty_version' => 'v2.5.3', 'version' => '2.5.3.0', 'reference' => 'b0073a77ac0b7ea55131020e87b1e3af540f4664', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/translation-contracts', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/translation-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '2.3'))));
     5return array('root' => array('name' => 'dotdigital/dotdigital-for-wordpress', 'pretty_version' => '7.3.1', 'version' => '7.3.1.0', 'reference' => null, 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev' => \false), 'versions' => array('clue/stream-filter' => array('pretty_version' => 'v1.7.0', 'version' => '1.7.0.0', 'reference' => '049509fef80032cb3f051595029ab75b49a3c2f7', 'type' => 'library', 'install_path' => __DIR__ . '/../clue/stream-filter', 'aliases' => array(), 'dev_requirement' => \false), 'dotdigital/dotdigital-for-wordpress' => array('pretty_version' => '7.3.1', 'version' => '7.3.1.0', 'reference' => null, 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev_requirement' => \false), 'dotdigital/dotdigital-php' => array('pretty_version' => '2.6.1', 'version' => '2.6.1.0', 'reference' => '35f521ab2ac6c904850105b94ac3573014d4fc32', 'type' => 'library', 'install_path' => __DIR__ . '/../dotdigital/dotdigital-php', 'aliases' => array(), 'dev_requirement' => \false), 'guzzlehttp/guzzle' => array('pretty_version' => '7.9.3', 'version' => '7.9.3.0', 'reference' => '7b2f29fe81dc4da0ca0ea7d42107a0845946ea77', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/guzzle', 'aliases' => array(), 'dev_requirement' => \false), 'guzzlehttp/promises' => array('pretty_version' => '2.2.0', 'version' => '2.2.0.0', 'reference' => '7c69f28996b0a6920945dd20b3857e499d9ca96c', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/promises', 'aliases' => array(), 'dev_requirement' => \false), 'guzzlehttp/psr7' => array('pretty_version' => '2.7.1', 'version' => '2.7.1.0', 'reference' => 'c2270caaabe631b3b44c85f99e5a04bbb8060d16', 'type' => 'library', 'install_path' => __DIR__ . '/../guzzlehttp/psr7', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/async-client-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '*', 1 => '1.0')), 'php-http/client-common' => array('pretty_version' => '2.7.2', 'version' => '2.7.2.0', 'reference' => '0cfe9858ab9d3b213041b947c881d5b19ceeca46', 'type' => 'library', 'install_path' => __DIR__ . '/../php-http/client-common', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/client-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '*', 1 => '1.0')), 'php-http/curl-client' => array('pretty_version' => '2.3.3', 'version' => '2.3.3.0', 'reference' => 'f3eb48d266341afec0229a7a37a03521d3646b81', 'type' => 'library', 'install_path' => __DIR__ . '/../php-http/curl-client', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/discovery' => array('pretty_version' => '1.20.0', 'version' => '1.20.0.0', 'reference' => '82fe4c73ef3363caed49ff8dd1539ba06044910d', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../php-http/discovery', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/httplug' => array('pretty_version' => '2.4.1', 'version' => '2.4.1.0', 'reference' => '5cad731844891a4c282f3f3e1b582c46839d22f4', 'type' => 'library', 'install_path' => __DIR__ . '/../php-http/httplug', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/message' => array('pretty_version' => '1.16.2', 'version' => '1.16.2.0', 'reference' => '06dd5e8562f84e641bf929bfe699ee0f5ce8080a', 'type' => 'library', 'install_path' => __DIR__ . '/../php-http/message', 'aliases' => array(), 'dev_requirement' => \false), 'php-http/message-factory-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '1.0')), 'php-http/promise' => array('pretty_version' => '1.3.1', 'version' => '1.3.1.0', 'reference' => 'fc85b1fba37c169a69a07ef0d5a8075770cc1f83', 'type' => 'library', 'install_path' => __DIR__ . '/../php-http/promise', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-client' => array('pretty_version' => '1.0.3', 'version' => '1.0.3.0', 'reference' => 'bb5906edc1c324c9a05aa0873d40117941e5fa90', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-client', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-client-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '*', 1 => '1.0')), 'psr/http-factory' => array('pretty_version' => '1.1.0', 'version' => '1.1.0.0', 'reference' => '2b4765fddfe3b508ac62f829e852b1501d3f6e8a', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-factory', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-factory-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '*', 1 => '1.0')), 'psr/http-message' => array('pretty_version' => '2.0', 'version' => '2.0.0.0', 'reference' => '402d35bcb92c70c026d1a6a9883f06b2ead23d71', 'type' => 'library', 'install_path' => __DIR__ . '/../psr/http-message', 'aliases' => array(), 'dev_requirement' => \false), 'psr/http-message-implementation' => array('dev_requirement' => \false, 'provided' => array(0 => '*', 1 => '1.0')), 'ralouphie/getallheaders' => array('pretty_version' => '3.0.3', 'version' => '3.0.3.0', 'reference' => '120b605dfeb996808c31b6477290a714d356e822', 'type' => 'library', 'install_path' => __DIR__ . '/../ralouphie/getallheaders', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/deprecation-contracts' => array('pretty_version' => 'v2.5.4', 'version' => '2.5.4.0', 'reference' => '605389f2a7e5625f273b53960dc46aeaf9c62918', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/deprecation-contracts', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/options-resolver' => array('pretty_version' => 'v5.4.45', 'version' => '5.4.45.0', 'reference' => '74e5b6f0db3e8589e6cfd5efb317a1fc2bb52fb6', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/options-resolver', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-php73' => array('pretty_version' => 'v1.32.0', 'version' => '1.32.0.0', 'reference' => '0f68c03565dcaaf25a890667542e8bd75fe7e5bb', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php73', 'aliases' => array(), 'dev_requirement' => \false), 'symfony/polyfill-php80' => array('pretty_version' => 'v1.32.0', 'version' => '1.32.0.0', 'reference' => '0cc9dd0f17f61d8131e7df6b84bd344899fe2608', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/polyfill-php80', 'aliases' => array(), 'dev_requirement' => \false)));
  • dotmailer-sign-up-widget/trunk/vendor/dotdigital/dotdigital-php/composer.json

    r3110990 r3314722  
    22    "name": "dotdigital\/dotdigital-php",
    33    "description": "Dotdigital PHP Library",
    4     "version": "2.4.1",
     4    "version": "2.6.1",
    55    "license": "MIT",
    66    "autoload": {
     
    2020        "psr\/http-factory": "^1.0",
    2121        "php-http\/client-common": "^2.4",
    22         "php-http\/discovery": "^1.15.0",
    23         "nesbot\/carbon": "^2.67"
     22        "php-http\/discovery": "^1.15.0"
    2423    },
    2524    "require-dev": {
  • dotmailer-sign-up-widget/trunk/vendor/dotdigital/dotdigital-php/src/AbstractClient.php

    r3041822 r3314722  
    3838     */
    3939    protected static $apiPassword;
    40     public function __construct(ClientBuilder $clientBuilder = null, UriFactoryInterface $uriFactory = null)
     40    public function __construct(?ClientBuilder $clientBuilder = null, ?UriFactoryInterface $uriFactory = null)
    4141    {
    4242        $this->clientBuilder = $clientBuilder ?: new ClientBuilder();
  • dotmailer-sign-up-widget/trunk/vendor/dotdigital/dotdigital-php/src/ClientBuilder.php

    r3041822 r3314722  
    3131     */
    3232    private $plugins = [];
    33     public function __construct(ClientInterface $httpClient = null, RequestFactoryInterface $requestFactoryInterface = null, StreamFactoryInterface $streamFactoryInterface = null)
     33    public function __construct(?ClientInterface $httpClient = null, ?RequestFactoryInterface $requestFactoryInterface = null, ?StreamFactoryInterface $streamFactoryInterface = null)
    3434    {
    3535        $this->httpClient = $httpClient ?: Psr18ClientDiscovery::find();
  • dotmailer-sign-up-widget/trunk/vendor/dotdigital/dotdigital-php/src/Exception/ResponseValidationException.php

    r3041822 r3314722  
    5656        $decoded = \json_decode($responseBody, \true);
    5757        if (\json_last_error() !== \JSON_ERROR_NONE) {
    58             $decoded = ['description' => \sprintf('Error decoding response - %s', \json_last_error_msg()), 'errorCode' => 'Error Unknown', 'details' => []];
     58            $decoded = ['description' => \sprintf('Error decoding response - %s', \json_last_error_msg()), 'errorCode' => $this->getCode() ?: 'Error Unknown', 'details' => []];
    5959        }
    6060        return $decoded;
  • dotmailer-sign-up-widget/trunk/vendor/dotdigital/dotdigital-php/src/HttpClient/Message/V3/ResponseMediator.php

    r3041822 r3314722  
    44
    55use Dotdigital_WordPress_Vendor\Dotdigital\Exception\ResponseValidationException;
     6use Dotdigital_WordPress_Vendor\Dotdigital\Exception\TooManyRequestsException;
    67use Dotdigital_WordPress_Vendor\Psr\Http\Message\ResponseInterface;
    78class ResponseMediator
    89{
    910    /**
    10      * @var int[] $passableStatusCodes
    11      */
    12     private static $passableStatusCodes = [200, 201, 202, 204];
    13     /**
    1411     * @param ResponseInterface $response
    1512     *
    1613     * @return string
    17      * @throws ResponseValidationException
     14     * @throws ResponseValidationException|TooManyRequestsException
    1815     */
    1916    public static function getContent(ResponseInterface $response)
    2017    {
    21         if (!\in_array($response->getStatusCode(), self::$passableStatusCodes)) {
    22             throw ResponseValidationException::fromErrorResponse($response);
     18        switch ($response->getStatusCode()) {
     19            case 200:
     20            case 201:
     21            case 202:
     22            case 204:
     23                return $response->getBody()->getContents();
     24            case 429:
     25                throw TooManyRequestsException::fromErrorResponse($response);
     26            default:
     27                throw ResponseValidationException::fromErrorResponse($response);
    2328        }
    24         return $response->getBody()->getContents();
    2529    }
    2630}
  • dotmailer-sign-up-widget/trunk/vendor/dotdigital/dotdigital-php/src/V2/Resources/AddressBooks.php

    r3041822 r3314722  
    3737     * @throws \Http\Client\Exception
    3838     */
    39     public function addContactToAddressBook(int $addressBookId, string $email, array $dataFields = [], string $optInType = null, string $emailType = null)
     39    public function addContactToAddressBook(int $addressBookId, string $email, array $dataFields = [], ?string $optInType = null, ?string $emailType = null)
    4040    {
    4141        $response = $this->post(\sprintf(self::RESOURCE_BASE . '/%s' . '/contacts', $addressBookId), ["email" => $email, "optInType" => $optInType, "emailType" => $emailType, "dataFields" => $this->resolveDataFields($dataFields)]);
     
    5454     * @throws \Http\Client\Exception
    5555     */
    56     public function resubscribeContactToAddressBook(int $addressBookId, string $email, array $dataFields = [], string $preferredLocale = null, string $returnUrlToUseIfChallenged = null)
     56    public function resubscribeContactToAddressBook(int $addressBookId, string $email, array $dataFields = [], ?string $preferredLocale = null, ?string $returnUrlToUseIfChallenged = null)
    5757    {
    5858        $response = $this->post(\sprintf(self::RESOURCE_BASE . '/%s/' . 'contacts/resubscribe', $addressBookId), ["unsubscribedContact" => ["email" => $email, "dataFields" => $this->resolveDataFields($dataFields)], "preferredLocale" => $preferredLocale, "returnUrlToUseIfChallenged" => $returnUrlToUseIfChallenged]);
  • dotmailer-sign-up-widget/trunk/vendor/dotdigital/dotdigital-php/src/V3/Models/Contact.php

    r3110990 r3314722  
    7272    }
    7373    /**
    74      * @param array<mixed> $data
     74     * @param array|Identifiers $data
    7575     * @return void
    7676     * @throws \Exception
     
    9595    public function setDataFields($data)
    9696    {
    97         $dataFieldsCollection = empty($data) ? null : new DataFieldCollection();
     97        if (empty($data)) {
     98            return;
     99        }
     100        $dataFieldsCollection = new DataFieldCollection();
    98101        foreach ($data as $key => $value) {
    99102            $dataField = new DataField($key, $value);
     
    136139    }
    137140    /**
    138      * @param array<mixed> $data
     141     * @param array $data
    139142     * @return void
    140143     * @throws \Exception
    141144     */
    142     public function setPreferences($data)
     145    public function setPreferences(array $data)
    143146    {
    144147        $preferenceCollection = new PreferenceCollection();
  • dotmailer-sign-up-widget/trunk/vendor/dotdigital/dotdigital-php/src/V3/Models/Contact/ChannelProperties/EmailChannelProperty.php

    r3041822 r3314722  
    1818     */
    1919    protected ?string $optInType;
     20    /**
     21     * @param $status
     22     *
     23     * @return self
     24     */
     25    public function setStatus($status) : EmailChannelProperty
     26    {
     27        $this->status = $status;
     28        return $this;
     29    }
     30    /**
     31     * @param $emailType
     32     *
     33     * @return self
     34     */
     35    public function setEmailType($emailType) : EmailChannelProperty
     36    {
     37        $this->emailType = $emailType;
     38        return $this;
     39    }
     40    /**
     41     * @param $optInType
     42     *
     43     * @return self
     44     */
     45    public function setOptInType($optInType) : EmailChannelProperty
     46    {
     47        $this->optInType = $optInType;
     48        return $this;
     49    }
    2050}
  • dotmailer-sign-up-widget/trunk/vendor/dotdigital/dotdigital-php/src/V3/Models/Contact/ChannelProperties/SmsChannelProperty.php

    r3041822 r3314722  
    1818     */
    1919    protected ?string $countryCode;
     20    /**
     21     * @param $optInType
     22     *
     23     * @return self
     24     */
     25    public function setOptInType($optInType) : SmsChannelProperty
     26    {
     27        $this->optInType = $optInType;
     28        return $this;
     29    }
     30    /**
     31     * @param $status
     32     *
     33     * @return self
     34     */
     35    public function setStatus($status) : SmsChannelProperty
     36    {
     37        $this->status = $status;
     38        return $this;
     39    }
     40    /**
     41     * @param $countryCode
     42     *
     43     * @return self
     44     */
     45    public function setCountryCode($countryCode) : SmsChannelProperty
     46    {
     47        $this->countryCode = $countryCode;
     48        return $this;
     49    }
    2050}
  • dotmailer-sign-up-widget/trunk/vendor/dotdigital/dotdigital-php/src/V3/Models/Contact/ChannelProperty.php

    r3041822 r3314722  
    1717    protected ?SmsChannelProperty $sms;
    1818    /**
    19      * @param array $property
     19     * @param array|EmailChannelProperty $property
    2020     *
    2121     * @return void
    2222     * @throws \Exception
    2323     */
    24     public function setEmail(array $property)
     24    public function setEmail($property)
    2525    {
    2626        $this->email = new EmailChannelProperty($property);
    2727    }
    2828    /**
    29      * @param array $property
     29     * @param array|SmsChannelProperty $property
    3030     *
    3131     * @return void
    3232     * @throws \Exception
    3333     */
    34     public function setSms(array $property)
     34    public function setSms($property)
    3535    {
    3636        $this->sms = new SmsChannelProperty($property);
  • dotmailer-sign-up-widget/trunk/vendor/dotdigital/dotdigital-php/src/V3/Models/Contact/ConsentRecord.php

    r3041822 r3314722  
    5858    {
    5959        try {
    60             $value = \Dotdigital_WordPress_Vendor\Carbon\Carbon::parse($value)->toIso8601String();
     60            new \DateTime($value);
    6161        } catch (\Exception $e) {
    62             throw new ValidationException("Invalid date format for dateTimeConsented field, expected ISO8601 format");
     62            throw new ValidationException("Invalid date format for dateTimeConsented field");
    6363        }
    6464        return $value;
  • dotmailer-sign-up-widget/trunk/vendor/dotdigital/dotdigital-php/src/V3/Models/Contact/Identifiers.php

    r3041822 r3314722  
    55use Dotdigital_WordPress_Vendor\Dotdigital\V3\Models\AbstractSingletonModel;
    66/**
     7 * @method getContactId()
    78 * @method getEmail()
    89 * @method getMobileNumber()
     
    2223     */
    2324    protected string $mobileNumber;
     25    /**
     26     * @param int $contactId
     27     *
     28     * @return self
     29     */
     30    public function setContactId(int $contactId) : Identifiers
     31    {
     32        $this->contactId = $contactId;
     33        return $this;
     34    }
     35    /**
     36     * @param string $email
     37     *
     38     * @return self
     39     */
     40    public function setEmail(string $email) : Identifiers
     41    {
     42        $this->email = $email;
     43        return $this;
     44    }
     45    /**
     46     * @param string $mobileNumber
     47     *
     48     * @return self
     49     */
     50    public function setMobileNumber(string $mobileNumber) : Identifiers
     51    {
     52        $this->mobileNumber = $mobileNumber;
     53        return $this;
     54    }
    2455}
  • dotmailer-sign-up-widget/trunk/vendor/dotdigital/dotdigital-php/src/V3/Models/Contact/Import.php

    r3110990 r3314722  
    33namespace Dotdigital_WordPress_Vendor\Dotdigital\V3\Models\Contact;
    44
    5 use Dotdigital_WordPress_Vendor\Dotdigital\V3\Models\AbstractSingletonModel;
     5use Dotdigital_WordPress_Vendor\Dotdigital\V3\Models\AbstractImportModel;
    66use Dotdigital_WordPress_Vendor\Dotdigital\V3\Models\Contact;
    77use Dotdigital_WordPress_Vendor\Dotdigital\V3\Models\Contact\Import\Failure;
    8 use Dotdigital_WordPress_Vendor\Dotdigital\V3\Models\Contact\Import\FailureCollection;
    98use Dotdigital_WordPress_Vendor\Dotdigital\V3\Models\Contact\Import\Summary;
    109use Dotdigital_WordPress_Vendor\Dotdigital\V3\Models\ContactCollection;
    11 /**
    12  * @method string getImportId()
    13  * @method string getStatus()
    14  * @method Summary getSummary()
    15  * @method FailureCollection getFailures()
    16  */
    17 class Import extends AbstractSingletonModel
     10use Dotdigital_WordPress_Vendor\Dotdigital\V3\Models\Import\Failure\FailureCollection;
     11use Dotdigital_WordPress_Vendor\Dotdigital\V3\Models\Import\ImportInterface;
     12use Dotdigital_WordPress_Vendor\Dotdigital\V3\Models\Import\SummaryInterface;
     13class Import extends AbstractImportModel implements ImportInterface
    1814{
    19     /**
    20      * @var string
    21      */
    22     protected $importId;
    23     /**
    24      * @var string
    25      */
    26     protected $status;
    27     /**
    28      * @var Summary
    29      */
    30     protected $summary;
    3115    /**
    3216     * @var ContactCollection
     
    3721     */
    3822    protected $updated;
    39     /**
    40      * @var FailureCollection
    41      */
    42     protected $failures;
    4323    /**
    4424     * @param array $contactsData
     
    5636    }
    5737    /**
    58      * @param array $failuresData
    59      * @return FailureCollection
    60      * @throws \Exception
     38     * @inheritDoc
    6139     */
    62     private function createFailures(array $failuresData) : FailureCollection
     40    public function createFailures(array $failuresData) : FailureCollection
    6341    {
    6442        $failures = new FailureCollection();
     
    7048    }
    7149    /**
    72      * @param string $importId
    73      * @return void
    74      */
    75     public function setImportId(string $importId) : void
    76     {
    77         $this->importId = $importId;
    78     }
    79     /**
    80      * @param string $status
    81      * @return void
    82      */
    83     public function setStatus(string $status) : void
    84     {
    85         $this->status = $status;
    86     }
    87     /**
    88      * @param array $summary
    89      * @return void
    90      * @throws \Exception
     50     * @inheritDoc
    9151     */
    9252    public function setSummary(array $summary) : void
     
    11373    }
    11474    /**
    115      * @param array $failures
    116      * @return void
    117      * @throws \Exception
     75     * @inheritDoc
    11876     */
    119     public function setFailures(array $failures) : void
     77    public function getSummary() : ?SummaryInterface
    12078    {
    121         $this->failures = $this->createFailures($failures);
     79        return $this->summary;
     80    }
     81    /**
     82     * @inheritdoc
     83     */
     84    public function getFailures() : ?FailureCollection
     85    {
     86        return $this->failures;
     87    }
     88    /**
     89     * @inheritDoc
     90     */
     91    public function getImportId() : string
     92    {
     93        return $this->importId;
     94    }
     95    /**
     96     * @inheritDoc
     97     */
     98    public function getStatus() : string
     99    {
     100        return $this->status;
    122101    }
    123102}
  • dotmailer-sign-up-widget/trunk/vendor/dotdigital/dotdigital-php/src/V3/Models/Contact/Import/Failure.php

    r3041822 r3314722  
    55use Dotdigital_WordPress_Vendor\Dotdigital\V3\Models\AbstractSingletonModel;
    66use Dotdigital_WordPress_Vendor\Dotdigital\V3\Models\Contact\Identifiers;
    7 class Failure extends AbstractSingletonModel
     7use Dotdigital_WordPress_Vendor\Dotdigital\V3\Models\Contact\Import\Failure\FailureDetail;
     8use Dotdigital_WordPress_Vendor\Dotdigital\V3\Models\Contact\Import\Failure\FailureDetailCollection;
     9use Dotdigital_WordPress_Vendor\Dotdigital\V3\Models\Import\FailureInterface;
     10class Failure extends AbstractSingletonModel implements FailureInterface
    811{
    912    /**
     
    2427     * @throws \Exception
    2528     */
    26     private function createFailureDetails(array $failureDetailsData) : FailureDetailCollection
     29    public function createFailureDetails(array $failureDetailsData) : FailureDetailCollection
    2730    {
    2831        $failureDetails = new FailureDetailCollection();
  • dotmailer-sign-up-widget/trunk/vendor/dotdigital/dotdigital-php/src/V3/Models/Contact/Import/Summary.php

    r3041822 r3314722  
    44
    55use Dotdigital_WordPress_Vendor\Dotdigital\V3\Models\AbstractSingletonModel;
    6 class Summary extends AbstractSingletonModel
     6use Dotdigital_WordPress_Vendor\Dotdigital\V3\Models\Import\SummaryInterface;
     7class Summary extends AbstractSingletonModel implements SummaryInterface
    78{
    89    /**
  • dotmailer-sign-up-widget/trunk/vendor/dotdigital/dotdigital-php/src/V3/Models/Contact/Preference.php

    r3041822 r3314722  
    2222     */
    2323    protected ?bool $isOptedIn;
     24    /**
     25     * @param int $id
     26     *
     27     * @return self
     28     */
     29    public function setId(int $id) : Preference
     30    {
     31        $this->id = $id;
     32        return $this;
     33    }
     34    /**
     35     * @param bool $isOptedIn
     36     *
     37     * @return self
     38     */
     39    public function setIsOptedIn(bool $isOptedIn) : Preference
     40    {
     41        $this->isOptedIn = $isOptedIn;
     42        return $this;
     43    }
    2444}
  • dotmailer-sign-up-widget/trunk/vendor/dotdigital/dotdigital-php/src/V3/Models/InsightData.php

    r3041822 r3314722  
    2525    protected RecordsCollection $records;
    2626    /**
    27      * @param $data
     27     * @param array $data
    2828     * @return void
    2929     * @throws \Exception
    3030     */
    31     public function setRecords($data)
     31    public function setRecords(array $data)
    3232    {
    3333        $recordsCollection = new RecordsCollection();
  • dotmailer-sign-up-widget/trunk/vendor/dotdigital/dotdigital-php/src/V3/Models/InsightData/Record.php

    r3041822 r3314722  
    44
    55use Dotdigital_WordPress_Vendor\Dotdigital\V3\Models\AbstractSingletonModel;
    6 use Dotdigital_WordPress_Vendor\Dotdigital\V3\Models\InsightData\ContactIdentity;
     6use Dotdigital_WordPress_Vendor\Dotdigital\V3\Models\InsightData\InsightDataIdentity;
    77class Record extends AbstractSingletonModel
    88{
    99    /**
    10      * @var ContactIdentity|null
     10     * @var InsightDataIdentity|null
    1111     */
    12     protected ?ContactIdentity $contactIdentity;
     12    protected ?InsightDataIdentity $contactIdentity;
    1313    /**
    1414     * @var string
     
    2020    protected array $json;
    2121    /**
    22      * @param array $data
     22     * @param array|InsightDataIdentity $data
    2323     * @return void
    2424     * @throws \Exception
    2525     */
    26     public function setContactIdentity(array $data)
     26    public function setContactIdentity($data)
    2727    {
    28         $this->contactIdentity = new ContactIdentity($data);
     28        $this->contactIdentity = new InsightDataIdentity($data);
    2929    }
    3030}
  • dotmailer-sign-up-widget/trunk/vendor/dotdigital/dotdigital-php/src/V3/Resources/InsightData.php

    r3110990 r3314722  
    77use Dotdigital_WordPress_Vendor\Dotdigital\Resources\AbstractResource;
    88use Dotdigital_WordPress_Vendor\Dotdigital\V3\Models\InsightData as InsightDataModel;
     9use Dotdigital_WordPress_Vendor\Dotdigital\V3\Models\InsightData\Import;
    910use Dotdigital_WordPress_Vendor\Http\Client\Exception;
    1011class InsightData extends AbstractResource
     
    4950        return $this->put(\sprintf('%s/%s/%s/%s/%s/%s', self::RESOURCE_BASE, 'contacts', $identifier, $value, $collectionName, $recordId), $insightData);
    5051    }
     52    /**
     53     * Retrieves the status of an insight data import request and the results if available.
     54     *
     55     * @param string $importId
     56     * @return Import
     57     * @throws Exception
     58     * @throws \Exception
     59     */
     60    public function getImportById(string $importId) : Import
     61    {
     62        $response = $this->get(\sprintf('%s/%s/%s', self::RESOURCE_BASE, 'import', $importId));
     63        return new Import($response);
     64    }
    5165}
  • dotmailer-sign-up-widget/trunk/vendor/dotdigital/dotdigital-php/src/V3/Utility/Pagination/Parameter.php

    r3041822 r3314722  
    7878    {
    7979        try {
    80             $value = \Dotdigital_WordPress_Vendor\Carbon\Carbon::parse(\str_replace('gte::', '', $value))->toIso8601String();
     80            $value = \str_replace('gte::', '', $value);
     81            new \DateTime($value);
    8182        } catch (\Exception $e) {
    82             throw new ValidationException("Invalid date format for {$this->field} field, expected ISO8601 format");
     83            throw new ValidationException("Invalid date format for {$this->field} field");
    8384        }
    8485        return $value;
  • dotmailer-sign-up-widget/trunk/vendor/guzzlehttp/guzzle/src/Cookie/SetCookie.php

    r3110990 r3314722  
    4747                                $data[$search] = (int) $value;
    4848                            }
     49                        } elseif ($search === 'Secure' || $search === 'Discard' || $search === 'HttpOnly') {
     50                            if ($value) {
     51                                $data[$search] = \true;
     52                            }
    4953                        } else {
    5054                            $data[$search] = $value;
  • dotmailer-sign-up-widget/trunk/vendor/guzzlehttp/guzzle/src/Handler/Proxy.php

    r3041822 r3314722  
    1717     * requests to another handler.
    1818     *
    19      * @param callable(\Psr\Http\Message\RequestInterface, array): \GuzzleHttp\Promise\PromiseInterface $default Handler used for normal responses
    20      * @param callable(\Psr\Http\Message\RequestInterface, array): \GuzzleHttp\Promise\PromiseInterface $sync    Handler used for synchronous responses.
     19     * @param callable(RequestInterface, array): PromiseInterface $default Handler used for normal responses
     20     * @param callable(RequestInterface, array): PromiseInterface $sync    Handler used for synchronous responses.
    2121     *
    22      * @return callable(\Psr\Http\Message\RequestInterface, array): \GuzzleHttp\Promise\PromiseInterface Returns the composed handler.
     22     * @return callable(RequestInterface, array): PromiseInterface Returns the composed handler.
    2323     */
    2424    public static function wrapSync(callable $default, callable $sync) : callable
     
    3636     * through the StreamHandler.
    3737     *
    38      * @param callable(\Psr\Http\Message\RequestInterface, array): \GuzzleHttp\Promise\PromiseInterface $default   Handler used for non-streaming responses
    39      * @param callable(\Psr\Http\Message\RequestInterface, array): \GuzzleHttp\Promise\PromiseInterface $streaming Handler used for streaming responses
     38     * @param callable(RequestInterface, array): PromiseInterface $default   Handler used for non-streaming responses
     39     * @param callable(RequestInterface, array): PromiseInterface $streaming Handler used for streaming responses
    4040     *
    41      * @return callable(\Psr\Http\Message\RequestInterface, array): \GuzzleHttp\Promise\PromiseInterface Returns the composed handler.
     41     * @return callable(RequestInterface, array): PromiseInterface Returns the composed handler.
    4242     */
    4343    public static function wrapStreaming(callable $default, callable $streaming) : callable
  • dotmailer-sign-up-widget/trunk/vendor/guzzlehttp/guzzle/src/Handler/StreamHandler.php

    r3150005 r3314722  
    4747            $request = $request->withoutHeader('Expect');
    4848            // Append a content-length header if body size is zero to match
    49             // cURL's behavior.
    50             if (0 === $request->getBody()->getSize()) {
     49            // the behavior of `CurlHandler`
     50            if ((0 === \strcasecmp('PUT', $request->getMethod()) || 0 === \strcasecmp('POST', $request->getMethod())) && 0 === $request->getBody()->getSize()) {
    5151                $request = $request->withHeader('Content-Length', '0');
    5252            }
  • dotmailer-sign-up-widget/trunk/vendor/guzzlehttp/guzzle/src/Pool.php

    r3041822 r3314722  
    8080     * @param array|\Iterator $requests Requests to send concurrently.
    8181     * @param array           $options  Passes through the options available in
    82      *                                  {@see \GuzzleHttp\Pool::__construct}
     82     *                                  {@see Pool::__construct}
    8383     *
    8484     * @return array Returns an array containing the response or an exception
  • dotmailer-sign-up-widget/trunk/vendor/guzzlehttp/guzzle/src/Utils.php

    r3150005 r3314722  
    7272     * The returned handler is not wrapped by any default middlewares.
    7373     *
    74      * @return callable(\Psr\Http\Message\RequestInterface, array): \GuzzleHttp\Promise\PromiseInterface Returns the best handler for the given system.
     74     * @return callable(\Psr\Http\Message\RequestInterface, array): Promise\PromiseInterface Returns the best handler for the given system.
    7575     *
    7676     * @throws \RuntimeException if no viable Handler is available.
  • dotmailer-sign-up-widget/trunk/vendor/guzzlehttp/guzzle/src/functions.php

    r3041822 r3314722  
    4848 * The returned handler is not wrapped by any default middlewares.
    4949 *
    50  * @return callable(\Psr\Http\Message\RequestInterface, array): \GuzzleHttp\Promise\PromiseInterface Returns the best handler for the given system.
     50 * @return callable(\Psr\Http\Message\RequestInterface, array): Promise\PromiseInterface Returns the best handler for the given system.
    5151 *
    5252 * @throws \RuntimeException if no viable Handler is available.
  • dotmailer-sign-up-widget/trunk/vendor/guzzlehttp/promises/src/Utils.php

    r3150005 r3314722  
    128128            $results[$idx] = $value;
    129129        }, function ($reason, $idx, Promise $aggregate) : void {
    130             $aggregate->reject($reason);
     130            if (Is::pending($aggregate)) {
     131                $aggregate->reject($reason);
     132            }
    131133        })->then(function () use(&$results) {
    132134            \ksort($results);
  • dotmailer-sign-up-widget/trunk/vendor/guzzlehttp/psr7/src/UploadedFile.php

    r3150005 r3314722  
    1010class UploadedFile implements UploadedFileInterface
    1111{
    12     private const ERRORS = [\UPLOAD_ERR_OK, \UPLOAD_ERR_INI_SIZE, \UPLOAD_ERR_FORM_SIZE, \UPLOAD_ERR_PARTIAL, \UPLOAD_ERR_NO_FILE, \UPLOAD_ERR_NO_TMP_DIR, \UPLOAD_ERR_CANT_WRITE, \UPLOAD_ERR_EXTENSION];
     12    private const ERROR_MAP = [\UPLOAD_ERR_OK => 'UPLOAD_ERR_OK', \UPLOAD_ERR_INI_SIZE => 'UPLOAD_ERR_INI_SIZE', \UPLOAD_ERR_FORM_SIZE => 'UPLOAD_ERR_FORM_SIZE', \UPLOAD_ERR_PARTIAL => 'UPLOAD_ERR_PARTIAL', \UPLOAD_ERR_NO_FILE => 'UPLOAD_ERR_NO_FILE', \UPLOAD_ERR_NO_TMP_DIR => 'UPLOAD_ERR_NO_TMP_DIR', \UPLOAD_ERR_CANT_WRITE => 'UPLOAD_ERR_CANT_WRITE', \UPLOAD_ERR_EXTENSION => 'UPLOAD_ERR_EXTENSION'];
    1313    /**
    1414     * @var string|null
     
    7676    private function setError(int $error) : void
    7777    {
    78         if (\false === \in_array($error, UploadedFile::ERRORS, \true)) {
     78        if (!isset(UploadedFile::ERROR_MAP[$error])) {
    7979            throw new InvalidArgumentException('Invalid error status for UploadedFile');
    8080        }
     
    102102    {
    103103        if (\false === $this->isOk()) {
    104             throw new RuntimeException('Cannot retrieve stream due to upload error');
     104            throw new RuntimeException(\sprintf('Cannot retrieve stream due to upload error (%s)', self::ERROR_MAP[$this->error]));
    105105        }
    106106        if ($this->isMoved()) {
  • dotmailer-sign-up-widget/trunk/vendor/guzzlehttp/psr7/src/Uri.php

    r3150005 r3314722  
    8181        // If IPv6
    8282        $prefix = '';
    83         if (\preg_match('%^(.*://\\[[0-9:a-f]+\\])(.*?)$%', $url, $matches)) {
     83        if (\preg_match('%^(.*://\\[[0-9:a-fA-F]+\\])(.*?)$%', $url, $matches)) {
    8484            /** @var array{0:string, 1:string, 2:string} $matches */
    8585            $prefix = $matches[1];
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/Deferred.php

    r3041822 r3314722  
    4343        $this->onRejectedCallbacks = [];
    4444    }
    45     /**
    46      * {@inheritdoc}
    47      */
    48     public function then(callable $onFulfilled = null, callable $onRejected = null) : Promise
     45    public function then(?callable $onFulfilled = null, ?callable $onRejected = null) : Promise
    4946    {
    5047        $deferred = new self($this->waitCallback);
     
    7370        return $deferred;
    7471    }
    75     /**
    76      * {@inheritdoc}
    77      */
    7872    public function getState() : string
    7973    {
     
    108102        }
    109103    }
    110     /**
    111      * {@inheritdoc}
    112      */
    113104    public function wait($unwrap = \true)
    114105    {
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/Exception/HttpClientNoMatchException.php

    r3041822 r3314722  
    1717     */
    1818    private $request;
    19     public function __construct(string $message, RequestInterface $request, \Exception $previous = null)
     19    public function __construct(string $message, RequestInterface $request, ?\Exception $previous = null)
    2020    {
    2121        $this->request = $request;
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/HttpAsyncClientDecorator.php

    r3041822 r3314722  
    1818    protected $httpAsyncClient;
    1919    /**
    20      * {@inheritdoc}
    21      *
    2220     * @see HttpAsyncClient::sendAsyncRequest
    2321     */
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/HttpAsyncClientEmulator.php

    r3041822 r3314722  
    1616{
    1717    /**
    18      * {@inheritdoc}
    19      *
    2018     * @see HttpClient::sendRequest
    2119     */
    2220    public abstract function sendRequest(RequestInterface $request) : ResponseInterface;
    2321    /**
    24      * {@inheritdoc}
    25      *
    2622     * @see HttpAsyncClient::sendAsyncRequest
    2723     */
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/HttpClientDecorator.php

    r3041822 r3314722  
    1919    protected $httpClient;
    2020    /**
    21      * {@inheritdoc}
    22      *
    2321     * @see ClientInterface::sendRequest
    2422     */
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/HttpClientEmulator.php

    r3041822 r3314722  
    1414{
    1515    /**
    16      * {@inheritdoc}
    17      *
    1816     * @see HttpClient::sendRequest
    1917     */
     
    2422    }
    2523    /**
    26      * {@inheritdoc}
    27      *
    2824     * @see HttpAsyncClient::sendAsyncRequest
    2925     */
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/HttpClientPool/HttpClientPool.php

    r3041822 r3314722  
    4444     */
    4545    protected abstract function chooseHttpClient() : HttpClientPoolItem;
    46     /**
    47      * {@inheritdoc}
    48      */
    4946    public function sendAsyncRequest(RequestInterface $request)
    5047    {
    5148        return $this->chooseHttpClient()->sendAsyncRequest($request);
    5249    }
    53     /**
    54      * {@inheritdoc}
    55      */
    5650    public function sendRequest(RequestInterface $request) : ResponseInterface
    5751    {
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/HttpClientPool/HttpClientPoolItem.php

    r3041822 r3314722  
    5252     * @param int|null                        $reenableAfter Number of seconds until this client is enabled again after an error
    5353     */
    54     public function __construct($client, int $reenableAfter = null)
     54    public function __construct($client, ?int $reenableAfter = null)
    5555    {
    5656        if (!$client instanceof ClientInterface && !$client instanceof HttpAsyncClient) {
     
    6060        $this->reenableAfter = $reenableAfter;
    6161    }
    62     /**
    63      * {@inheritdoc}
    64      */
    6562    public function sendRequest(RequestInterface $request) : ResponseInterface
    6663    {
     
    7976        return $response;
    8077    }
    81     /**
    82      * {@inheritdoc}
    83      */
    8478    public function sendAsyncRequest(RequestInterface $request)
    8579    {
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/HttpClientPool/LeastUsedClientPool.php

    r3041822 r3314722  
    1414final class LeastUsedClientPool extends HttpClientPool
    1515{
    16     /**
    17      * {@inheritdoc}
    18      */
    1916    protected function chooseHttpClient() : HttpClientPoolItem
    2017    {
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/HttpClientPool/RandomClientPool.php

    r3041822 r3314722  
    66use Dotdigital_WordPress_Vendor\Http\Client\Common\Exception\HttpClientNotFoundException;
    77/**
    8  * RoundRobinClientPool will choose the next client in the pool.
     8 * RandomClientPool will choose a random enabled client in the pool.
    99 *
    1010 * @author Joel Wurtz <joel.wurtz@gmail.com>
     
    1212final class RandomClientPool extends HttpClientPool
    1313{
    14     /**
    15      * {@inheritdoc}
    16      */
    1714    protected function chooseHttpClient() : HttpClientPoolItem
    1815    {
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/HttpClientPool/RoundRobinClientPool.php

    r3041822 r3314722  
    1212final class RoundRobinClientPool extends HttpClientPool
    1313{
    14     /**
    15      * {@inheritdoc}
    16      */
    1714    protected function chooseHttpClient() : HttpClientPoolItem
    1815    {
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/HttpClientRouter.php

    r3041822 r3314722  
    1111use Dotdigital_WordPress_Vendor\Psr\Http\Message\ResponseInterface;
    1212/**
    13  * {@inheritdoc}
    14  *
    1513 * @author Joel Wurtz <joel.wurtz@gmail.com>
    1614 */
     
    2119     */
    2220    private $clients = [];
    23     /**
    24      * {@inheritdoc}
    25      */
    2621    public function sendRequest(RequestInterface $request) : ResponseInterface
    2722    {
    2823        return $this->chooseHttpClient($request)->sendRequest($request);
    2924    }
    30     /**
    31      * {@inheritdoc}
    32      */
    3325    public function sendAsyncRequest(RequestInterface $request)
    3426    {
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/HttpMethodsClient.php

    r3041822 r3314722  
    2929     * @param RequestFactory|RequestFactoryInterface $requestFactory
    3030     */
    31     public function __construct(ClientInterface $httpClient, $requestFactory, StreamFactoryInterface $streamFactory = null)
     31    public function __construct(ClientInterface $httpClient, $requestFactory, ?StreamFactoryInterface $streamFactory = null)
    3232    {
    3333        if (!$requestFactory instanceof RequestFactory && !$requestFactory instanceof RequestFactoryInterface) {
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/Plugin/AddHostPlugin.php

    r3041822 r3314722  
    4141        $this->replace = $options['replace'];
    4242    }
    43     /**
    44      * {@inheritdoc}
    45      */
    4643    public function handleRequest(RequestInterface $request, callable $next, callable $first) : Promise
    4744    {
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/Plugin/AuthenticationPlugin.php

    r3041822 r3314722  
    2323        $this->authentication = $authentication;
    2424    }
    25     /**
    26      * {@inheritdoc}
    27      */
    2825    public function handleRequest(RequestInterface $request, callable $next, callable $first) : Promise
    2926    {
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/Plugin/BaseUriPlugin.php

    r3041822 r3314722  
    2222     * @var AddPathPlugin|null
    2323     */
    24     private $addPathPlugin = null;
     24    private $addPathPlugin;
    2525    /**
    2626     * @param UriInterface $uri        Has to contain a host name and can have a path
     
    3434        }
    3535    }
    36     /**
    37      * {@inheritdoc}
    38      */
    3936    public function handleRequest(RequestInterface $request, callable $next, callable $first) : Promise
    4037    {
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/Plugin/ContentLengthPlugin.php

    r3041822 r3314722  
    1515final class ContentLengthPlugin implements Plugin
    1616{
    17     /**
    18      * {@inheritdoc}
    19      */
    2017    public function handleRequest(RequestInterface $request, callable $next, callable $first) : Promise
    2118    {
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/Plugin/ContentTypePlugin.php

    r3041822 r3314722  
    4848        $this->sizeLimit = $options['size_limit'];
    4949    }
    50     /**
    51      * {@inheritdoc}
    52      */
    5350    public function handleRequest(RequestInterface $request, callable $next, callable $first) : Promise
    5451    {
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/Plugin/CookiePlugin.php

    r3041822 r3314722  
    3030        $this->cookieJar = $cookieJar;
    3131    }
    32     /**
    33      * {@inheritdoc}
    34      */
    3532    public function handleRequest(RequestInterface $request, callable $next, callable $first) : Promise
    3633    {
     
    126123     * @param string $part A single cookie value in format key=value
    127124     *
    128      * @return array{0:string, 1:?string}
     125     * @return array{0:string, 1:string|null}
    129126     */
    130127    private function createValueKey(string $part) : array
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/Plugin/DecoderPlugin.php

    r3041822 r3314722  
    4242        $this->useContentEncoding = $options['use_content_encoding'];
    4343    }
    44     /**
    45      * {@inheritdoc}
    46      */
    4744    public function handleRequest(RequestInterface $request, callable $next, callable $first) : Promise
    4845    {
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/Plugin/ErrorPlugin.php

    r3041822 r3314722  
    4848        $this->onlyServerException = $options['only_server_exception'];
    4949    }
    50     /**
    51      * {@inheritdoc}
    52      */
    5350    public function handleRequest(RequestInterface $request, callable $next, callable $first) : Promise
    5451    {
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/Plugin/HeaderAppendPlugin.php

    r3041822 r3314722  
    3131        $this->headers = $headers;
    3232    }
    33     /**
    34      * {@inheritdoc}
    35      */
    3633    public function handleRequest(RequestInterface $request, callable $next, callable $first) : Promise
    3734    {
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/Plugin/HeaderDefaultsPlugin.php

    r3041822 r3314722  
    2727        $this->headers = $headers;
    2828    }
    29     /**
    30      * {@inheritdoc}
    31      */
    3229    public function handleRequest(RequestInterface $request, callable $next, callable $first) : Promise
    3330    {
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/Plugin/HeaderRemovePlugin.php

    r3041822 r3314722  
    2525        $this->headers = $headers;
    2626    }
    27     /**
    28      * {@inheritdoc}
    29      */
    3027    public function handleRequest(RequestInterface $request, callable $next, callable $first) : Promise
    3128    {
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/Plugin/HeaderSetPlugin.php

    r3041822 r3314722  
    2727        $this->headers = $headers;
    2828    }
    29     /**
    30      * {@inheritdoc}
    31      */
    3229    public function handleRequest(RequestInterface $request, callable $next, callable $first) : Promise
    3330    {
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/Plugin/HistoryPlugin.php

    r3041822 r3314722  
    2626        $this->journal = $journal;
    2727    }
    28     /**
    29      * {@inheritdoc}
    30      */
    3128    public function handleRequest(RequestInterface $request, callable $next, callable $first) : Promise
    3229    {
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/Plugin/QueryDefaultsPlugin.php

    r3041822 r3314722  
    2828        $this->queryParams = $queryParams;
    2929    }
    30     /**
    31      * {@inheritdoc}
    32      */
    3330    public function handleRequest(RequestInterface $request, callable $next, callable $first) : Promise
    3431    {
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/Plugin/RedirectPlugin.php

    r3041822 r3314722  
    6363    private $streamFactory;
    6464    /**
    65      * @param array{'preserve_header'?: bool|string[], 'use_default_for_multiple'?: bool, 'strict'?: bool} $config
     65     * @param array{'preserve_header'?: bool|string[], 'use_default_for_multiple'?: bool, 'strict'?: bool, 'stream_factory'?:StreamFactoryInterface} $config
    6666     *
    6767     * Configuration options:
     
    9898        $this->streamFactory = $options['stream_factory'];
    9999    }
    100     /**
    101      * {@inheritdoc}
    102      */
    103100    public function handleRequest(RequestInterface $request, callable $next, callable $first) : Promise
    104101    {
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/Plugin/RequestMatcherPlugin.php

    r3041822 r3314722  
    2727     */
    2828    private $failurePlugin;
    29     public function __construct(RequestMatcher $requestMatcher, ?Plugin $delegateOnMatch, Plugin $delegateOnNoMatch = null)
     29    public function __construct(RequestMatcher $requestMatcher, ?Plugin $delegateOnMatch, ?Plugin $delegateOnNoMatch = null)
    3030    {
    3131        $this->requestMatcher = $requestMatcher;
     
    3333        $this->failurePlugin = $delegateOnNoMatch;
    3434    }
    35     /**
    36      * {@inheritdoc}
    37      */
    3835    public function handleRequest(RequestInterface $request, callable $next, callable $first) : Promise
    3936    {
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/Plugin/RequestSeekableBodyPlugin.php

    r3041822 r3314722  
    1414final class RequestSeekableBodyPlugin extends SeekableBodyPlugin
    1515{
    16     /**
    17      * {@inheritdoc}
    18      */
    1916    public function handleRequest(RequestInterface $request, callable $next, callable $first) : Promise
    2017    {
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/Plugin/ResponseSeekableBodyPlugin.php

    r3041822 r3314722  
    1515final class ResponseSeekableBodyPlugin extends SeekableBodyPlugin
    1616{
    17     /**
    18      * {@inheritdoc}
    19      */
    2017    public function handleRequest(RequestInterface $request, callable $next, callable $first) : Promise
    2118    {
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/Plugin/RetryPlugin.php

    r3041822 r3314722  
    8080        $this->exceptionDelay = $options['exception_delay'];
    8181    }
    82     /**
    83      * {@inheritdoc}
    84      */
    8582    public function handleRequest(RequestInterface $request, callable $next, callable $first) : Promise
    8683    {
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/PluginClient.php

    r3041822 r3314722  
    5656        $this->options = $this->configure($options);
    5757    }
    58     /**
    59      * {@inheritdoc}
    60      */
    6158    public function sendRequest(RequestInterface $request) : ResponseInterface
    6259    {
     
    7673        return $pluginChain($request)->wait();
    7774    }
    78     /**
    79      * {@inheritdoc}
    80      */
    8175    public function sendAsyncRequest(RequestInterface $request)
    8276    {
  • dotmailer-sign-up-widget/trunk/vendor/php-http/client-common/src/PluginClientBuilder.php

    r3041822 r3314722  
    2626    }
    2727    /**
    28      * @param mixed $value
     28     * @param string|int|float|bool|string[] $value
    2929     */
    3030    public function setOption(string $name, $value) : self
  • dotmailer-sign-up-widget/trunk/vendor/php-http/curl-client/composer.json

    r3110990 r3314722  
    3131        "php-http\/client-integration-tests": "^3.0",
    3232        "phpunit\/phpunit": "^7.5 || ^9.4",
    33         "laminas\/laminas-diactoros": "^2.0",
     33        "laminas\/laminas-diactoros": "^2.0 || ^3.0",
    3434        "php-http\/message-factory": "^1.1"
    3535    },
  • dotmailer-sign-up-widget/trunk/vendor/php-http/curl-client/src/Client.php

    r3041822 r3314722  
    7070     * @since 2.0 Accepts PSR-17 factories instead of HTTPlug ones.
    7171     */
    72     public function __construct(ResponseFactoryInterface $responseFactory = null, StreamFactoryInterface $streamFactory = null, array $options = [])
     72    public function __construct(?ResponseFactoryInterface $responseFactory = null, ?StreamFactoryInterface $streamFactory = null, array $options = [])
    7373    {
    7474        $this->responseFactory = $responseFactory ?: Psr17FactoryDiscovery::findResponseFactory();
  • dotmailer-sign-up-widget/trunk/vendor/php-http/curl-client/src/CurlPromise.php

    r3041822 r3314722  
    4747     * The callback will be called when the response or exception arrived and never more than once.
    4848     *
    49      * @param callable $onFulfilled Called when a response will be available
    50      * @param callable $onRejected  Called when an error happens.
     49     * @param callable|null $onFulfilled Called when a response will be available
     50     * @param callable|null $onRejected  Called when an error happens.
    5151     *
    5252     * You must always return the Response in the interface or throw an Exception
     
    5555     *                 callback (onFulfilled / onRejected)
    5656     */
    57     public function then(callable $onFulfilled = null, callable $onRejected = null)
     57    public function then(?callable $onFulfilled = null, ?callable $onRejected = null)
    5858    {
    5959        if ($onFulfilled) {
  • dotmailer-sign-up-widget/trunk/vendor/php-http/curl-client/src/MultiRunner.php

    r3041822 r3314722  
    7272     * @param PromiseCore|null $targetCore
    7373     */
    74     public function wait(PromiseCore $targetCore = null) : void
     74    public function wait(?PromiseCore $targetCore = null) : void
    7575    {
    7676        do {
  • dotmailer-sign-up-widget/trunk/vendor/php-http/discovery/src/Composer/Plugin.php

    r3041822 r3314722  
    303303    private function updateComposerLock(Composer $composer, IOInterface $io)
    304304    {
     305        if (\false === $composer->getConfig()->get('lock')) {
     306            return;
     307        }
    305308        $lock = \substr(Factory::getComposerFile(), 0, -4) . 'lock';
    306309        $composerJson = \file_get_contents(Factory::getComposerFile());
    307310        $lockFile = new JsonFile($lock, null, $io);
    308311        $locker = ClassDiscovery::safeClassExists(RepositorySet::class) ? new Locker($io, $lockFile, $composer->getInstallationManager(), $composerJson) : new Locker($io, $lockFile, $composer->getRepositoryManager(), $composer->getInstallationManager(), $composerJson);
     312        if (!$locker->isLocked()) {
     313            return;
     314        }
    309315        $lockData = $locker->getLockData();
    310316        $lockData['content-hash'] = Locker::getContentHash($composerJson);
  • dotmailer-sign-up-widget/trunk/vendor/php-http/discovery/src/Psr18Client.php

    r3110990 r3314722  
    2525    public function __construct(?ClientInterface $client = null, ?RequestFactoryInterface $requestFactory = null, ?ResponseFactoryInterface $responseFactory = null, ?ServerRequestFactoryInterface $serverRequestFactory = null, ?StreamFactoryInterface $streamFactory = null, ?UploadedFileFactoryInterface $uploadedFileFactory = null, ?UriFactoryInterface $uriFactory = null)
    2626    {
     27        $requestFactory ?? ($requestFactory = $client instanceof RequestFactoryInterface ? $client : null);
     28        $responseFactory ?? ($responseFactory = $client instanceof ResponseFactoryInterface ? $client : null);
     29        $serverRequestFactory ?? ($serverRequestFactory = $client instanceof ServerRequestFactoryInterface ? $client : null);
     30        $streamFactory ?? ($streamFactory = $client instanceof StreamFactoryInterface ? $client : null);
     31        $uploadedFileFactory ?? ($uploadedFileFactory = $client instanceof UploadedFileFactoryInterface ? $client : null);
     32        $uriFactory ?? ($uriFactory = $client instanceof UriFactoryInterface ? $client : null);
    2733        parent::__construct($requestFactory, $responseFactory, $serverRequestFactory, $streamFactory, $uploadedFileFactory, $uriFactory);
    2834        $this->client = $client ?? Psr18ClientDiscovery::find();
  • dotmailer-sign-up-widget/trunk/vendor/php-http/httplug/src/Exception/HttpException.php

    r3041822 r3314722  
    2121     * @param string $message
    2222     */
    23     public function __construct($message, RequestInterface $request, ResponseInterface $response, \Exception $previous = null)
     23    public function __construct($message, RequestInterface $request, ResponseInterface $response, ?\Exception $previous = null)
    2424    {
    2525        parent::__construct($message, $request, $previous);
     
    3939     * Factory method to create a new exception with a normalized error message.
    4040     */
    41     public static function create(RequestInterface $request, ResponseInterface $response, \Exception $previous = null)
     41    public static function create(RequestInterface $request, ResponseInterface $response, ?\Exception $previous = null)
    4242    {
    4343        $message = \sprintf('[url] %s [http method] %s [status code] %s [reason phrase] %s', $request->getRequestTarget(), $request->getMethod(), $response->getStatusCode(), $response->getReasonPhrase());
  • dotmailer-sign-up-widget/trunk/vendor/php-http/httplug/src/Exception/NetworkException.php

    r3041822 r3314722  
    1818     * @param string $message
    1919     */
    20     public function __construct($message, RequestInterface $request, \Exception $previous = null)
     20    public function __construct($message, RequestInterface $request, ?\Exception $previous = null)
    2121    {
    2222        $this->setRequest($request);
  • dotmailer-sign-up-widget/trunk/vendor/php-http/httplug/src/Exception/RequestAwareTrait.php

    r3041822 r3314722  
    1414        $this->request = $request;
    1515    }
    16     /**
    17      * {@inheritdoc}
    18      */
    1916    public function getRequest() : RequestInterface
    2017    {
  • dotmailer-sign-up-widget/trunk/vendor/php-http/httplug/src/Exception/RequestException.php

    r3041822 r3314722  
    1919     * @param string $message
    2020     */
    21     public function __construct($message, RequestInterface $request, \Exception $previous = null)
     21    public function __construct($message, RequestInterface $request, ?\Exception $previous = null)
    2222    {
    2323        $this->setRequest($request);
  • dotmailer-sign-up-widget/trunk/vendor/php-http/httplug/src/Promise/HttpFulfilledPromise.php

    r3041822 r3314722  
    1616        $this->response = $response;
    1717    }
    18     /**
    19      * {@inheritdoc}
    20      */
    21     public function then(callable $onFulfilled = null, callable $onRejected = null)
     18    public function then(?callable $onFulfilled = null, ?callable $onRejected = null)
    2219    {
    2320        if (null === $onFulfilled) {
     
    3027        }
    3128    }
    32     /**
    33      * {@inheritdoc}
    34      */
    3529    public function getState()
    3630    {
    3731        return Promise::FULFILLED;
    3832    }
    39     /**
    40      * {@inheritdoc}
    41      */
    4233    public function wait($unwrap = \true)
    4334    {
  • dotmailer-sign-up-widget/trunk/vendor/php-http/httplug/src/Promise/HttpRejectedPromise.php

    r3041822 r3314722  
    1515        $this->exception = $exception;
    1616    }
    17     /**
    18      * {@inheritdoc}
    19      */
    20     public function then(callable $onFulfilled = null, callable $onRejected = null)
     17    public function then(?callable $onFulfilled = null, ?callable $onRejected = null)
    2118    {
    2219        if (null === $onRejected) {
     
    3330        }
    3431    }
    35     /**
    36      * {@inheritdoc}
    37      */
    3832    public function getState()
    3933    {
    4034        return Promise::REJECTED;
    4135    }
    42     /**
    43      * {@inheritdoc}
    44      */
    4536    public function wait($unwrap = \true)
    4637    {
  • dotmailer-sign-up-widget/trunk/vendor/php-http/message/src/Cookie.php

    r3110990 r3314722  
    442442    private function normalizePath($path)
    443443    {
    444         $path = \rtrim($path, '/');
     444        if (null !== $path) {
     445            $path = \rtrim($path, '/');
     446        }
    445447        if (empty($path) or '/' !== \substr($path, 0, 1)) {
    446448            $path = '/';
  • dotmailer-sign-up-widget/trunk/vendor/php-http/message/src/Stream/BufferedStream.php

    r3041822 r3314722  
    139139            throw new \InvalidArgumentException('Can not read a negative amount of bytes');
    140140        }
     141        if (0 === $length) {
     142            return '';
     143        }
    141144        $read = '';
    142145        // First read from the resource
  • dotmailer-sign-up-widget/trunk/vendor/scoper-autoload.php

    r3255812 r3314722  
    2929    }
    3030}
     31humbug_phpscoper_expose_class('ValueError', 'Dotdigital_WordPress_Vendor\ValueError');
     32humbug_phpscoper_expose_class('UnhandledMatchError', 'Dotdigital_WordPress_Vendor\UnhandledMatchError');
     33humbug_phpscoper_expose_class('Attribute', 'Dotdigital_WordPress_Vendor\Attribute');
    3134humbug_phpscoper_expose_class('Stringable', 'Dotdigital_WordPress_Vendor\Stringable');
    32 humbug_phpscoper_expose_class('ValueError', 'Dotdigital_WordPress_Vendor\ValueError');
    33 humbug_phpscoper_expose_class('Attribute', 'Dotdigital_WordPress_Vendor\Attribute');
    3435humbug_phpscoper_expose_class('PhpToken', 'Dotdigital_WordPress_Vendor\PhpToken');
    35 humbug_phpscoper_expose_class('UnhandledMatchError', 'Dotdigital_WordPress_Vendor\UnhandledMatchError');
    3636humbug_phpscoper_expose_class('JsonException', 'Dotdigital_WordPress_Vendor\JsonException');
    37 humbug_phpscoper_expose_class('ComposerAutoloaderInitb933e4dec037358ff05515f1fd78e117', 'Dotdigital_WordPress_Vendor\ComposerAutoloaderInitb933e4dec037358ff05515f1fd78e117');
     37humbug_phpscoper_expose_class('ComposerAutoloaderInit19354b1666905663163f60760caf1917', 'Dotdigital_WordPress_Vendor\ComposerAutoloaderInit19354b1666905663163f60760caf1917');
    3838humbug_phpscoper_expose_class('DM_Widget', 'Dotdigital_WordPress_Vendor\DM_Widget');
    3939
     
    4343if (!function_exists('activate')) { function activate() { return \Dotdigital_WordPress_Vendor\activate(...func_get_args()); } }
    4444if (!function_exists('add_filter')) { function add_filter() { return \Dotdigital_WordPress_Vendor\add_filter(...func_get_args()); } }
    45 if (!function_exists('app')) { function app() { return \Dotdigital_WordPress_Vendor\app(...func_get_args()); } }
    4645if (!function_exists('apply_filters')) { function apply_filters() { return \Dotdigital_WordPress_Vendor\apply_filters(...func_get_args()); } }
    4746if (!function_exists('array_key_first')) { function array_key_first() { return \Dotdigital_WordPress_Vendor\array_key_first(...func_get_args()); } }
     
    5453if (!function_exists('esc_html')) { function esc_html() { return \Dotdigital_WordPress_Vendor\esc_html(...func_get_args()); } }
    5554if (!function_exists('fdiv')) { function fdiv() { return \Dotdigital_WordPress_Vendor\fdiv(...func_get_args()); } }
    56 if (!function_exists('getHtmlAttribute')) { function getHtmlAttribute() { return \Dotdigital_WordPress_Vendor\getHtmlAttribute(...func_get_args()); } }
    57 if (!function_exists('getMaxHistoryMonthsByAmount')) { function getMaxHistoryMonthsByAmount() { return \Dotdigital_WordPress_Vendor\getMaxHistoryMonthsByAmount(...func_get_args()); } }
    58 if (!function_exists('getOpenCollectiveSponsors')) { function getOpenCollectiveSponsors() { return \Dotdigital_WordPress_Vendor\getOpenCollectiveSponsors(...func_get_args()); } }
    5955if (!function_exists('get_debug_type')) { function get_debug_type() { return \Dotdigital_WordPress_Vendor\get_debug_type(...func_get_args()); } }
    6056if (!function_exists('get_option')) { function get_option() { return \Dotdigital_WordPress_Vendor\get_option(...func_get_args()); } }
     
    6359if (!function_exists('hrtime')) { function hrtime() { return \Dotdigital_WordPress_Vendor\hrtime(...func_get_args()); } }
    6460if (!function_exists('is_countable')) { function is_countable() { return \Dotdigital_WordPress_Vendor\is_countable(...func_get_args()); } }
    65 if (!function_exists('mb_check_encoding')) { function mb_check_encoding() { return \Dotdigital_WordPress_Vendor\mb_check_encoding(...func_get_args()); } }
    66 if (!function_exists('mb_chr')) { function mb_chr() { return \Dotdigital_WordPress_Vendor\mb_chr(...func_get_args()); } }
    67 if (!function_exists('mb_convert_case')) { function mb_convert_case() { return \Dotdigital_WordPress_Vendor\mb_convert_case(...func_get_args()); } }
    68 if (!function_exists('mb_convert_encoding')) { function mb_convert_encoding() { return \Dotdigital_WordPress_Vendor\mb_convert_encoding(...func_get_args()); } }
    69 if (!function_exists('mb_convert_variables')) { function mb_convert_variables() { return \Dotdigital_WordPress_Vendor\mb_convert_variables(...func_get_args()); } }
    70 if (!function_exists('mb_decode_mimeheader')) { function mb_decode_mimeheader() { return \Dotdigital_WordPress_Vendor\mb_decode_mimeheader(...func_get_args()); } }
    71 if (!function_exists('mb_decode_numericentity')) { function mb_decode_numericentity() { return \Dotdigital_WordPress_Vendor\mb_decode_numericentity(...func_get_args()); } }
    72 if (!function_exists('mb_detect_encoding')) { function mb_detect_encoding() { return \Dotdigital_WordPress_Vendor\mb_detect_encoding(...func_get_args()); } }
    73 if (!function_exists('mb_detect_order')) { function mb_detect_order() { return \Dotdigital_WordPress_Vendor\mb_detect_order(...func_get_args()); } }
    74 if (!function_exists('mb_encode_mimeheader')) { function mb_encode_mimeheader() { return \Dotdigital_WordPress_Vendor\mb_encode_mimeheader(...func_get_args()); } }
    75 if (!function_exists('mb_encode_numericentity')) { function mb_encode_numericentity() { return \Dotdigital_WordPress_Vendor\mb_encode_numericentity(...func_get_args()); } }
    76 if (!function_exists('mb_encoding_aliases')) { function mb_encoding_aliases() { return \Dotdigital_WordPress_Vendor\mb_encoding_aliases(...func_get_args()); } }
    77 if (!function_exists('mb_get_info')) { function mb_get_info() { return \Dotdigital_WordPress_Vendor\mb_get_info(...func_get_args()); } }
    78 if (!function_exists('mb_http_input')) { function mb_http_input() { return \Dotdigital_WordPress_Vendor\mb_http_input(...func_get_args()); } }
    79 if (!function_exists('mb_http_output')) { function mb_http_output() { return \Dotdigital_WordPress_Vendor\mb_http_output(...func_get_args()); } }
    80 if (!function_exists('mb_internal_encoding')) { function mb_internal_encoding() { return \Dotdigital_WordPress_Vendor\mb_internal_encoding(...func_get_args()); } }
    81 if (!function_exists('mb_language')) { function mb_language() { return \Dotdigital_WordPress_Vendor\mb_language(...func_get_args()); } }
    82 if (!function_exists('mb_lcfirst')) { function mb_lcfirst() { return \Dotdigital_WordPress_Vendor\mb_lcfirst(...func_get_args()); } }
    83 if (!function_exists('mb_list_encodings')) { function mb_list_encodings() { return \Dotdigital_WordPress_Vendor\mb_list_encodings(...func_get_args()); } }
    84 if (!function_exists('mb_ltrim')) { function mb_ltrim() { return \Dotdigital_WordPress_Vendor\mb_ltrim(...func_get_args()); } }
    85 if (!function_exists('mb_ord')) { function mb_ord() { return \Dotdigital_WordPress_Vendor\mb_ord(...func_get_args()); } }
    86 if (!function_exists('mb_output_handler')) { function mb_output_handler() { return \Dotdigital_WordPress_Vendor\mb_output_handler(...func_get_args()); } }
    87 if (!function_exists('mb_parse_str')) { function mb_parse_str() { return \Dotdigital_WordPress_Vendor\mb_parse_str(...func_get_args()); } }
    88 if (!function_exists('mb_rtrim')) { function mb_rtrim() { return \Dotdigital_WordPress_Vendor\mb_rtrim(...func_get_args()); } }
    89 if (!function_exists('mb_scrub')) { function mb_scrub() { return \Dotdigital_WordPress_Vendor\mb_scrub(...func_get_args()); } }
    90 if (!function_exists('mb_str_pad')) { function mb_str_pad() { return \Dotdigital_WordPress_Vendor\mb_str_pad(...func_get_args()); } }
    91 if (!function_exists('mb_str_split')) { function mb_str_split() { return \Dotdigital_WordPress_Vendor\mb_str_split(...func_get_args()); } }
    92 if (!function_exists('mb_stripos')) { function mb_stripos() { return \Dotdigital_WordPress_Vendor\mb_stripos(...func_get_args()); } }
    93 if (!function_exists('mb_stristr')) { function mb_stristr() { return \Dotdigital_WordPress_Vendor\mb_stristr(...func_get_args()); } }
    94 if (!function_exists('mb_strlen')) { function mb_strlen() { return \Dotdigital_WordPress_Vendor\mb_strlen(...func_get_args()); } }
    95 if (!function_exists('mb_strpos')) { function mb_strpos() { return \Dotdigital_WordPress_Vendor\mb_strpos(...func_get_args()); } }
    96 if (!function_exists('mb_strrchr')) { function mb_strrchr() { return \Dotdigital_WordPress_Vendor\mb_strrchr(...func_get_args()); } }
    97 if (!function_exists('mb_strrichr')) { function mb_strrichr() { return \Dotdigital_WordPress_Vendor\mb_strrichr(...func_get_args()); } }
    98 if (!function_exists('mb_strripos')) { function mb_strripos() { return \Dotdigital_WordPress_Vendor\mb_strripos(...func_get_args()); } }
    99 if (!function_exists('mb_strrpos')) { function mb_strrpos() { return \Dotdigital_WordPress_Vendor\mb_strrpos(...func_get_args()); } }
    100 if (!function_exists('mb_strstr')) { function mb_strstr() { return \Dotdigital_WordPress_Vendor\mb_strstr(...func_get_args()); } }
    101 if (!function_exists('mb_strtolower')) { function mb_strtolower() { return \Dotdigital_WordPress_Vendor\mb_strtolower(...func_get_args()); } }
    102 if (!function_exists('mb_strtoupper')) { function mb_strtoupper() { return \Dotdigital_WordPress_Vendor\mb_strtoupper(...func_get_args()); } }
    103 if (!function_exists('mb_strwidth')) { function mb_strwidth() { return \Dotdigital_WordPress_Vendor\mb_strwidth(...func_get_args()); } }
    104 if (!function_exists('mb_substitute_character')) { function mb_substitute_character() { return \Dotdigital_WordPress_Vendor\mb_substitute_character(...func_get_args()); } }
    105 if (!function_exists('mb_substr')) { function mb_substr() { return \Dotdigital_WordPress_Vendor\mb_substr(...func_get_args()); } }
    106 if (!function_exists('mb_substr_count')) { function mb_substr_count() { return \Dotdigital_WordPress_Vendor\mb_substr_count(...func_get_args()); } }
    107 if (!function_exists('mb_trim')) { function mb_trim() { return \Dotdigital_WordPress_Vendor\mb_trim(...func_get_args()); } }
    108 if (!function_exists('mb_ucfirst')) { function mb_ucfirst() { return \Dotdigital_WordPress_Vendor\mb_ucfirst(...func_get_args()); } }
    10961if (!function_exists('plugin_dir_path')) { function plugin_dir_path() { return \Dotdigital_WordPress_Vendor\plugin_dir_path(...func_get_args()); } }
    11062if (!function_exists('plugins_url')) { function plugins_url() { return \Dotdigital_WordPress_Vendor\plugins_url(...func_get_args()); } }
  • dotmailer-sign-up-widget/trunk/vendor/symfony/polyfill-php80/PhpToken.php

    r3041822 r3314722  
    2727    public $text;
    2828    /**
    29      * @var int
     29     * @var -1|positive-int
    3030     */
    3131    public $line;
     
    3434     */
    3535    public $pos;
     36    /**
     37     * @param -1|positive-int $line
     38     */
    3639    public function __construct(int $id, string $text, int $line = -1, int $position = -1)
    3740    {
     
    6972    }
    7073    /**
    71      * @return static[]
     74     * @return list<static>
    7275     */
    7376    public static function tokenize(string $code, int $flags = 0) : array
Note: See TracChangeset for help on using the changeset viewer.