-
Notifications
You must be signed in to change notification settings - Fork 62
/
composer.json
63 lines (63 loc) · 1.78 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
{
"name": "akamai-open/edgegrid-client",
"description": "Implements the Akamai {OPEN} EdgeGrid Authentication specified by https://developer.akamai.com/introduction/Client_Auth.html",
"keywords": ["akamai", "open", "edgegrid", "authentication", "client"],
"type": "library",
"license": "Apache-2.0",
"homepage": "https://github.com/akamai-open/AkamaiOPEN-edgegrid-php",
"authors": [
{
"name": "Davey Shafik",
"email": "dshafik@akamai.com"
}
],
"require": {
"php": ">=8.1",
"akamai-open/edgegrid-auth": "2.0.0",
"guzzlehttp/guzzle": "^7.5.0",
"psr/http-client": "^1.0.2",
"psr/log": "^3.0",
"monolog/monolog": "^3.3",
"league/climate": "~3.2"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpspec/prophecy": "~1.0",
"squizlabs/php_codesniffer": "^3.7",
"friendsofphp/php-cs-fixer": "^3.9",
"humbug/box": ">=4.3.8"
},
"autoload": {
"psr-4": {
"Akamai\\Open\\EdgeGrid\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Akamai\\Open\\EdgeGrid\\Tests\\": ["tests", "vendor/akamai-open/edgegrid-auth/tests"]
}
},
"config": {
"platform": {
"php": "8.1"
}
},
"bin": [
"bin/http"
],
"scripts": {
"build": [
"@test",
"@build-phar",
"@fix-cs"
],
"test": "phpunit",
"build-phar": "./tools/build-phar.sh",
"fix-cs": [
"phpcbf --standard=PSR12 ./src ./tests",
"php-cs-fixer fix --rules=@PSR12 ./src",
"php-cs-fixer fix --rules=@PSR12 ./tests"
],
"check-version": "./tools/check-version.sh"
}
}