2020-09-25 18:06:41 +03:00
|
|
|
{
|
|
|
|
"name": "retailcrm/aliexpress-top-client",
|
|
|
|
"description": "API client implementation for AliExpress TOP.",
|
|
|
|
"type": "library",
|
|
|
|
"keywords": ["API", "retailCRM", "REST"],
|
|
|
|
"homepage": "http://www.retailcrm.ru/",
|
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "RetailDriver LLC",
|
|
|
|
"email": "integration@retailcrm.ru"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"support": {
|
|
|
|
"email": "support@retailcrm.ru"
|
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": { "RetailCrm\\": "src/" }
|
|
|
|
},
|
|
|
|
"require": {
|
2020-09-28 13:27:19 +03:00
|
|
|
"php": ">=7.3.0",
|
2020-09-25 18:06:41 +03:00
|
|
|
"ext-curl": "*",
|
|
|
|
"ext-json": "*",
|
2020-09-30 13:18:35 +03:00
|
|
|
"psr/log": "^1.1",
|
|
|
|
"doctrine/cache": "^1.10",
|
2020-09-28 16:08:55 +03:00
|
|
|
"jms/serializer": "^3.9",
|
2020-09-30 13:18:35 +03:00
|
|
|
"symfony/validator": "^5.1",
|
2020-09-25 18:06:41 +03:00
|
|
|
"doctrine/annotations": "^1.10",
|
2020-09-30 13:18:35 +03:00
|
|
|
"psr/http-client": "^1.0",
|
|
|
|
"psr/http-message": "^1.0",
|
|
|
|
"php-http/client-implementation": "^1.0",
|
|
|
|
"php-http/httplug": "^2.2",
|
|
|
|
"php-http/message-factory": "^1.0",
|
|
|
|
"php-http/discovery": "^1.12",
|
2020-10-01 12:43:07 +03:00
|
|
|
"php-http/multipart-stream-builder": "^1.1",
|
2020-10-02 16:24:57 +03:00
|
|
|
"symfony/expression-language": "^5.1",
|
|
|
|
"psr/cache": "^1.0",
|
|
|
|
"cache/array-adapter": "^1.0"
|
2020-09-25 18:06:41 +03:00
|
|
|
},
|
|
|
|
"require-dev": {
|
|
|
|
"phpunit/phpunit": "^9.3",
|
|
|
|
"phpmd/phpmd": "^2.9",
|
|
|
|
"squizlabs/php_codesniffer": "^3.5",
|
2020-09-28 13:27:19 +03:00
|
|
|
"phpcompatibility/php-compatibility": "*",
|
2020-09-29 16:04:02 +03:00
|
|
|
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
|
2020-09-29 16:54:10 +03:00
|
|
|
"vlucas/phpdotenv": "^5.2",
|
2020-09-30 13:18:35 +03:00
|
|
|
"brainmaestro/composer-git-hooks": "^2.8",
|
|
|
|
"php-http/mock-client": "^1.4",
|
|
|
|
"php-http/message": "^1.9",
|
|
|
|
"php-http/curl-client": "^2.1",
|
|
|
|
"nyholm/psr7": "^1.3"
|
2020-09-25 18:06:41 +03:00
|
|
|
},
|
2020-09-28 13:27:19 +03:00
|
|
|
"scripts": {
|
2020-09-29 16:54:10 +03:00
|
|
|
"cghooks": "vendor/bin/cghooks",
|
|
|
|
"post-install-cmd": "cghooks add --ignore-lock",
|
|
|
|
"post-update-cmd": "cghooks update",
|
2020-09-28 13:27:19 +03:00
|
|
|
"phpunit": "./vendor/bin/phpunit -c phpunit.xml.dist",
|
2020-09-29 17:46:00 +03:00
|
|
|
"phpmd": "./vendor/bin/phpmd src text controversial,./phpmd.xml",
|
2020-09-28 13:27:19 +03:00
|
|
|
"phpcs": "./vendor/bin/phpcs -p src --runtime-set testVersion 7.3",
|
2020-09-29 16:54:10 +03:00
|
|
|
"lint": "composer run-script phpcs && composer run-script phpmd",
|
|
|
|
"ci": "composer run-script lint && composer run-script phpunit"
|
|
|
|
},
|
|
|
|
"extra": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": [
|
|
|
|
"composer run-script lint"
|
|
|
|
]
|
|
|
|
}
|
2020-09-28 13:27:19 +03:00
|
|
|
},
|
|
|
|
"prefer-stable": true,
|
2020-09-25 18:06:41 +03:00
|
|
|
"license": "MIT"
|
|
|
|
}
|