Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## 1.1.0 - 2019-04-01
- Updated `composer.json`.


## 1.0.5 - 2019-03-26
- Updated Description.

Expand Down
38 changes: 21 additions & 17 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,38 +3,46 @@
"homepage": "https://www.alibabacloud.com/",
"description": "Alibaba Cloud KMS SDK for PHP",
"keywords": [
"aliyun",
"alibaba",
"alibabacloud",
"sdk",
"kms",
"cloud"
"cloud",
"aliyun",
"alibaba",
"library",
"alibabacloud"
],
"type": "library",
"license": "Apache-2.0",
"support": {
"issues": "https://github.com/aliyun/php-kms-sdk/issues",
"source": "https://github.com/aliyun/php-kms-sdk"
"source": "https://github.com/aliyun/php-kms-sdk",
"issues": "https://github.com/aliyun/php-kms-sdk/issues"
},
"authors": [
{
"name": "Alibaba Cloud SDK",
"homepage": "http://www.alibabacloud.com",
"email": "sdk-team@alibabacloud.com"
"email": "sdk-team@alibabacloud.com",
"homepage": "http://www.alibabacloud.com"
}
],
"require": {
"php": ">=5.5",
"ext-curl": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-openssl": "*",
"ext-mbstring": "*",
"alibabacloud/client": "^1.0"
"ext-xmlwriter": "*",
"ext-simplexml": "*",
"alibabacloud/client": "^1.1"
},
"require-dev": {
"symfony/dotenv": "^3.4",
"phpunit/phpunit": "^4.8",
"composer/composer": "^1.8",
"symfony/var-dumper": "^3.4"
},
"suggest": {
"ext-sockets": "To use client-side monitoring"
},
"autoload": {
"psr-4": {
Expand All @@ -56,12 +64,12 @@
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"minimum-stability": "dev",
"scripts-descriptions": {
"cs": "Tokenizes PHP, JavaScript and CSS files to detect violations of a defined coding standard.",
"cbf": "Automatically correct coding standard violations.",
Expand All @@ -70,8 +78,7 @@
"unit": "Run Unit tests.",
"feature": "Run Feature tests.",
"clearCache": "Clear cache like coverage.",
"coverage": "Show Coverage html.",
"prompts": "Generate IDE prompts."
"coverage": "Show Coverage html."
},
"scripts": {
"cs": "phpcs --standard=PSR2 -n ./",
Expand All @@ -90,9 +97,6 @@
"phpunit --testsuite=Feature --colors=always"
],
"clearCache": "rm -rf cache/*",
"coverage": "open cache/coverage/index.html",
"prompts": [
"@fixer"
]
"coverage": "open cache/coverage/index.html"
}
}