-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.13 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.13 KB
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
{
"name": "renanbr/crossref-client",
"description": "Client for CrossRef REST API",
"keywords": ["crossref", "client", "rest", "api", "api-client", "crossref-api", "crossref-client"],
"type": "library",
"license": "MIT",
"authors": [{
"name": "Renan de Lima Barbosa",
"email": "renandelima@gmail.com"
}],
"autoload": {
"psr-4": {
"RenanBr\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RenanBr\\CrossRefClient\\Test\\": "tests/"
}
},
"require": {
"php": ">=5.6.0",
"cache/array-adapter": "^1.0",
"cache/simple-cache-bridge": "^1.0",
"composer/semver": "^3.3",
"guzzlehttp/guzzle": "^6.2 || ^7.4",
"kevinrob/guzzle-cache-middleware": "^3.1 || ^4.0",
"psr/simple-cache": "^1.0 || ^2.0 || ^3.0",
"rtheunissen/guzzle-rate-limiter": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": ">=5.7"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}