1
0
mirror of synced 2024-11-24 06:16:27 +03:00

composer 2.3 compatibility, pock update, fixes (#146)

This commit is contained in:
Pavel 2022-04-06 14:25:28 +03:00 committed by GitHub
parent 13caebdbc2
commit a5ed9af862
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 13 additions and 11 deletions

View File

@ -28,7 +28,7 @@
"doctrine/annotations": "^1.13",
"liip/serializer": "2.0.*",
"php-http/httplug": "^2.2",
"civicrm/composer-compile-plugin": "^0.15.0",
"civicrm/composer-compile-plugin": "^0.18.0",
"symfony/console": "^4.0|^5.0|^6.0",
"psr/event-dispatcher": "^1.0",
"neur0toxine/psr.http-client-implementation.php-http-curl": "*",
@ -49,7 +49,7 @@
"nyholm/psr7": "^1.3",
"league/event": "^3.0",
"league/container": "^3.3",
"neur0toxine/pock": "^0.10"
"neur0toxine/pock": "^0.11"
},
"suggest": {
"ext-curl": "Most HTTP clients need ext-curl to work properly.",
@ -111,6 +111,10 @@
},
"config": {
"bin-dir": "vendor/bin",
"process-timeout": 600
"process-timeout": 600,
"allow-plugins": {
"civicrm/composer-compile-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}

View File

@ -17,6 +17,8 @@ use RetailCrm\Api\Component\Serializer\Annotation as JMS;
*
* @category CustomerContragent
* @package RetailCrm\Api\Model\Entity\Customers
*
* @SuppressWarnings(PHPMD.CamelCasePropertyName)
*/
class CustomerContragent
{

View File

@ -17,6 +17,8 @@ use RetailCrm\Api\Component\Serializer\Annotation as JMS;
*
* @category LegalEntity
* @package RetailCrm\Api\Model\Entity\References
*
* @SuppressWarnings(PHPMD.CamelCasePropertyName)
*/
class LegalEntity
{

View File

@ -342,14 +342,6 @@ class CustomerCorporateFilter
*/
public $lastOrderTo;
/**
* @var mixed[][]
*
* @Form\Type("array")
* @Form\SerializedName("CustomersCorporate")
*/
public $CustomersCorporate;
/**
* @var int[]
*

View File

@ -21,6 +21,8 @@ use RetailCrm\Api\Model\Response\Integration\IntegrationModuleUpdateScopesRespon
*
* @category Integration
* @package RetailCrm\Api\ResourceGroup
*
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
*/
class Integration extends AbstractApiResourceGroup
{