"Add tests for binary data round trip": "https://github.com/php-cache/integration-tests/commit/89cd7068e83aa776774bfc44f6bcba858c085616.patch"
},
"pear/net_smtp": {
- "Add in CiviCRM custom error message for CRM-8744": "tools/scripts/composer/patches/net-smtp-patch.patch"
+ "Add in CiviCRM custom error message for CRM-8744": "https://raw.githubusercontent.com/civicrm/civicrm-core/a6a0ff13d2a155ad962529595dceaef728116f96/tools/scripts/composer/patches/net-smtp-patch.patch"
},
"phpoffice/common": {
"Fix handling of libxml_disable_entity_loader": "https://raw.githubusercontent.com/civicrm/civicrm-core/9d93748a36c7c5d44422911db1c98fb2f7067b34/tools/scripts/composer/patches/phpoffice-common-xml-entity-fix.patch"
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
- "content-hash": "f545c6e46af52039ade0c29ca8fe41e5",
+ "content-hash": "705221f636824b774ef9fb35f3bfc987",
"packages": [
{
"name": "cache/integration-tests",
"tedivm/stash": "dev-master"
},
"type": "library",
+ "extra": {
+ "patches_applied": {
+ "Allow adding tests": "https://github.com/php-cache/integration-tests/commit/05f97174c09364dc10c084a38ba0cfd5124f4cec.patch",
+ "Support PHPUnit 6+": "https://github.com/php-cache/integration-tests/commit/1ec7362962185df91d3d749bc3fa7e7b99cb9fc7.patch",
+ "Add tests for binary data round trip": "https://github.com/php-cache/integration-tests/commit/89cd7068e83aa776774bfc44f6bcba858c085616.patch"
+ }
+ },
"autoload": {
"psr-4": {
"Cache\\IntegrationTests\\": "src/"
"type": "library",
"extra": {
"patches_applied": {
- "Add in CiviCRM custom error message for CRM-8744": "tools/scripts/composer/patches/net-smtp-patch.patch"
+ "Add in CiviCRM custom error message for CRM-8744": "https://raw.githubusercontent.com/civicrm/civicrm-core/a6a0ff13d2a155ad962529595dceaef728116f96/tools/scripts/composer/patches/net-smtp-patch.patch"
}
},
"autoload": {
"version": "3.0.0+php53",
"dist": {
"type": "zip",
- "url": "https://github.com/tplaner/When/archive/c1ec099f421bff354cc5c929f83b94031423fc80.zip",
- "reference": null,
- "shasum": null
+ "url": "https://github.com/tplaner/When/archive/c1ec099f421bff354cc5c929f83b94031423fc80.zip"
},
"require": {
"php": ">=5.3.0"
+++ /dev/null
---- Net/SMTP.php 2019-12-01 10:40:31.000000000 +1100
-+++ Net/SMTP.php 2020-02-08 14:36:53.758318869 +1100
-@@ -376,7 +376,9 @@
- return true;
- }
-
-- return PEAR::raiseError('Invalid response code received from server', $this->code);
-+ // CRM-8744
-+ $errorMessage = 'Invalid response code received from SMTP server while sending email. This is often caused by a misconfiguration in Outbound Email settings. Please verify the settings at Administer CiviCRM >> Global Settings >> Outbound Email (SMTP).';
-+ return PEAR::raiseError($errorMessage, $this->code, PEAR_ERROR_RETURN);
- }
-
- /**