123456789101112131415161718192021222324252627282930313233343536373839404142 |
- {
- "name": "alibabacloud/endpoint-util",
- "description": "Alibaba Cloud Endpoint Library for PHP",
- "type": "library",
- "license": "Apache-2.0",
- "authors": [
- {
- "name": "Alibaba Cloud SDK",
- "email": "sdk-team@alibabacloud.com"
- }
- ],
- "require": {
- "php": ">5.5"
- },
- "require-dev": {
- "phpunit/phpunit": "^4.8.35|^5.4.3"
- },
- "autoload": {
- "psr-4": {
- "AlibabaCloud\\Endpoint\\": "src"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "AlibabaCloud\\Endpoint\\Tests\\": "tests"
- }
- },
- "scripts": {
- "fixer": "php-cs-fixer fix ./",
- "test": [
- "@clearCache",
- "./vendor/bin/phpunit --colors=always"
- ],
- "clearCache": "rm -rf cache/*"
- },
- "config": {
- "sort-packages": true,
- "preferred-install": "dist",
- "optimize-autoloader": true
- },
- "prefer-stable": true
- }
|