forked from danielstonies/AkamaiOPEN-edgegrid-php-client
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
68 lines (68 loc) · 1.9 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
{
"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": "[email protected]"
}
],
"require": {
"php": ">=5.5",
"akamai-open/edgegrid-auth": "^1.0.0",
"guzzlehttp/guzzle": "^6.1.1|^7",
"psr/log": "^1.0",
"monolog/monolog": "^1.15|^2.0",
"league/climate": "~3.2"
},
"require-dev": {
"phpunit/phpunit": "~4.7",
"squizlabs/php_codesniffer": "^2.3",
"friendsofphp/php-cs-fixer": "^1.9",
"kherge/box": "^2.5",
"apigen/apigen": "^4.0.0"
},
"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": "5.5"
}
},
"bin": [
"bin/http"
],
"scripts": {
"build": [
"@test",
"@build-docs",
"@build-phar",
"@fix-cs"
],
"test": "phpunit",
"build-docs": [
"rm -Rf docs",
"composer install",
"apigen generate"
],
"build-phar": "./tools/build-phar.sh",
"fix-cs": [
"phpcbf --standard=PSR1,PSR2 ./src ./tests",
"php-cs-fixer fix --level=psr2 ./src",
"php-cs-fixer fix --level=psr2 ./tests"
],
"check-version": "./tools/check-version.sh"
}
}