-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.36 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
{
"name": "rhdc/akamai-edge-resolver",
"description": "Resolves host names to Akamai edge prod/staging host names or IP addresses",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Shawn Iwinski",
"email": "[email protected]"
}
],
"keywords": [
"akamai",
"dns",
"edge"
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=5.3.3"
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "^0.9.2",
"pear/net_dns2": "^1.4",
"phpunit/phpunit": "^4.8.36 || ^5.7.11 || ^6.0.5",
"squizlabs/php_codesniffer": "^2 || ^3"
},
"suggest": {
},
"autoload": {
"psr-4": {
"Rhdc\\Akamai\\Edge\\Resolver\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Rhdc\\Akamai\\Edge\\Resolver\\Test\\": "tests"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"check": [
"@lint",
"@cs:check"
],
"cs:check": "phpcs --standard=PSR2 src/ tests/",
"cs:fix": "phpcbf --standard=PSR2 src/ tests/",
"lint": "parallel-lint src/ tests/",
"test": "phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "0.x-dev"
}
}
}