-
Notifications
You must be signed in to change notification settings - Fork 30
/
composer.json
89 lines (89 loc) · 2.83 KB
/
composer.json
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
{
"name": "apigee/apigee-client-php",
"type": "library",
"description": "Client library for connecting to the Apigee Edge API.",
"keywords": [
"apigee",
"edge",
"api",
"sdk",
"client",
"web service"
],
"homepage": "http://github.com/apigee/apigee-client-php",
"license": "Apache-2.0",
"require": {
"php": "~8.1 || ~8.2 || ~8.3",
"ext-json": "*",
"ext-openssl": "*",
"ext-reflection": "*",
"fightbulc/moment": "^1.26",
"firebase/php-jwt": "^6.0",
"league/period": "^5.2",
"php-http/client-common": "^2.0",
"php-http/client-implementation": "^1.0",
"php-http/discovery": "^1.18",
"php-http/httplug": "^2.0",
"php-http/message": "^1.13",
"php-http/message-factory": "^1.0",
"phpdocumentor/reflection-docblock": "^5.0",
"psr/http-message": "^1.0 || ^2.0",
"symfony/options-resolver": "^6.4.8",
"symfony/property-access": "^6.4.9",
"symfony/property-info": "^6.4.9",
"symfony/serializer": "^6.4.9"
},
"require-dev": {
"dms/phpunit-arraysubset-asserts": "^0.4.0",
"friendsofphp/php-cs-fixer": "^3.22",
"fzaninotto/faker": "^1.7",
"guzzlehttp/psr7": "^2.5",
"league/flysystem": "^1.0",
"limedeck/phpunit-detailed-printer": "^6",
"monolog/monolog": "^1.23",
"php-http/guzzle7-adapter": "^1.0",
"php-http/mock-client": "^1.1.0",
"phpmetrics/phpmetrics": "^2.7",
"phpunit/phpunit": "^9.6",
"sebastian/comparator": "^4.0.5",
"symfony/cache": "^6.4.9",
"vimeo/psalm": "^5.20"
},
"autoload": {
"psr-4": {
"Apigee\\Edge\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Apigee\\Edge\\Tests\\": "tests"
}
},
"config": {
"optimize-autoloader": true,
"update-with-dependencies": true,
"sort-packages": true,
"preferred-install": {
"symfony/property-access": "source",
"*": "dist"
},
"allow-plugins": {
"php-http/discovery": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "vendor/bin/phpunit --coverage-clover coverage.xml",
"analyze": "vendor/vimeo/psalm/psalm --config=psalm.xml.dist --show-info=false --stats",
"metrics": "vendor/bin/phpmetrics .",
"metrics-html": "vendor/bin/phpmetrics . --report-html=report",
"check-style": "vendor/bin/php-cs-fixer fix --config=./.php-cs-fixer.dist.php --verbose --dry-run",
"fix-style": "vendor/bin/php-cs-fixer fix --config=./.php-cs-fixer.dist.php"
},
"extra": {
"branch-alias": {
"dev-2.x": "2.0.x-dev"
}
}
}