1
0
mirror of synced 2024-11-22 04:46:02 +03:00
aliexpress-top-client/composer.json

70 lines
2.3 KiB
JSON
Raw Normal View History

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": "*",
"psr/log": "^1.1",
"doctrine/cache": "^1.10",
2020-09-28 16:08:55 +03:00
"jms/serializer": "^3.9",
"symfony/validator": "^5.1",
2020-09-25 18:06:41 +03:00
"doctrine/annotations": "^1.10",
"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",
"php-http/multipart-stream-builder": "^1.1",
"symfony/expression-language": "^5.1"
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",
"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",
"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"
}