| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- {
- "name": "ucloud/ucloud-sdk-php",
- "type": "library",
- "description": "UCloud",
- "keywords": ["php", "ucloud"],
- "homepage": "https://github.com/ucloud/ucloud-sdk-php",
- "license": "MIT",
- "authors": [
- {
- "name": "ucloud",
- "email": "yufei.li@ucloud.cn"
- }
- ],
- "require": {
- "php": ">=5.6",
- "guzzlehttp/guzzle": "^6.2.1|^7.0",
- "psr/log": "^1.1"
- },
- "require-dev": {
- "phpunit/phpunit": "^9.0",
- "squizlabs/php_codesniffer": "^3.0",
- "phpcompatibility/php-compatibility": "^9.0"
- },
- "prefer-stable" : true,
- "autoload": {
- "psr-4" : {
- "UCloud\\": "src/"
- }
- },
- "autoload-dev": {
- "psr-4": { "UCloud\\Tests\\": "tests/" }
- },
- "config": {
- "preferred-install": "dist",
- "sort-packages": true
- },
- "extra": {
- "branch-alias": {
- "dev-master": "1.0.x-dev"
- }
- },
- "scripts": {
- "test": "vendor/bin/phpunit"
- }
- }
|