Blame view

vendor/alibabacloud/client/composer.json 3.53 KB
310f6425   曹明   1.完善短信提示“提取码”功能。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
    "name": "alibabacloud/client",
    "homepage": "https://www.alibabacloud.com/",
    "description": "Alibaba Cloud Client for PHP - Use Alibaba Cloud in your PHP project",
    "keywords": [
        "sdk",
        "tool",
        "cloud",
        "client",
        "aliyun",
        "alibaba",
        "library",
        "alibabacloud"
    ],
    "type": "library",
    "license": "Apache-2.0",
    "support": {
        "source": "https://github.com/aliyun/openapi-sdk-php-client",
        "issues": "https://github.com/aliyun/openapi-sdk-php-client/issues"
    },
    "authors": [
        {
            "name": "Alibaba Cloud SDK",
            "email": "sdk-team@alibabacloud.com",
            "homepage": "http://www.alibabacloud.com"
        }
    ],
    "require": {
        "php": ">=5.5",
        "ext-curl": "*",
        "ext-json": "*",
        "ext-libxml": "*",
        "ext-openssl": "*",
        "ext-mbstring": "*",
        "ext-xmlwriter": "*",
        "ext-simplexml": "*",
        "guzzlehttp/guzzle": "^6.3",
        "danielstjules/stringy": "^3.1",
        "mtdowling/jmespath.php": "^2.4",
        "adbario/php-dot-notation": "^2.2",
        "clagiordano/weblibs-configmanager": "^1.0"
    },
    "require-dev": {
        "ext-spl": "*",
        "ext-dom": "*",
        "ext-pcre": "*",
        "psr/cache": "^1.0",
        "ext-sockets": "*",
        "drupal/coder": "^8.3",
        "symfony/dotenv": "^3.4",
        "league/climate": "^3.2.4",
        "phpunit/phpunit": "^4.8.35|^5.4.3",
        "monolog/monolog": "^1.24",
        "composer/composer": "^1.8",
        "mikey179/vfsstream": "^1.6",
        "symfony/var-dumper": "^3.4"
    },
    "suggest": {
        "ext-sockets": "To use client-side monitoring"
    },
    "autoload": {
        "psr-4": {
            "AlibabaCloud\\Client\\": "src"
        },
        "files": [
            "src/Functions.php"
        ]
    },
    "autoload-dev": {
        "psr-4": {
            "AlibabaCloud\\Client\\Tests\\": "tests/"
        },
        "classmap": [
        ]
    },
    "extra": {
        "branch-alias": {
            "dev-master": "1.0-dev"
        }
    },
    "config": {
        "sort-packages": true,
        "preferred-install": "dist",
        "optimize-autoloader": true
    },
    "minimum-stability": "dev",
    "prefer-stable": true,
    "scripts-descriptions": {
        "cs": "Tokenizes PHP, JavaScript and CSS files to detect violations of a defined coding standard.",
        "cbf": "Automatically correct coding standard violations.",
        "fixer": "Fixes code to follow standards.",
        "test": "Run all tests.",
        "unit": "Run Unit tests.",
        "feature": "Run Feature tests.",
        "clearCache": "Clear cache like coverage.",
        "coverage": "Show Coverage html.",
        "endpoints": "Update endpoints from OSS."
    },
    "scripts": {
        "cs": "phpcs --standard=PSR2 -n ./",
        "cbf": "phpcbf --standard=PSR2 -n ./",
        "fixer": "php-cs-fixer fix ./",
        "test": [
            "phpunit --colors=always"
        ],
        "unit": [
            "@clearCache",
            "phpunit --testsuite=Unit --colors=always"
        ],
        "feature": [
            "@clearCache",
            "phpunit --testsuite=Feature --colors=always"
        ],
        "coverage": "open cache/coverage/index.html",
        "clearCache": "rm -rf cache/*",
        "endpoints": [
            "AlibabaCloud\\Client\\Regions\\LocationService::updateEndpoints",
            "@fixer"
        ],
        "release": [
            "AlibabaCloud\\Client\\Release::release"
        ]
    }
}