-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
57 lines (57 loc) · 1.55 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
{
"name": "npr/npr-one-backend-proxy",
"description": "A server-side proxy for interacting with the NPR One API's authorization server",
"keywords": [
"npr",
"oauth",
"oauth2",
"proxy"
],
"homepage": "https://dev.npr.org",
"license": "Apache-2.0",
"authors": [
{
"name": "Jared Biehler",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Nara Kasbergen",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Sarah Hersh",
"email": "[email protected]",
"role": "Documentation"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/npr/npr-one-backend-proxy-php/issues",
"source": "https://github.com/npr/npr-one-backend-proxy-php",
"docs": "https://github.com/npr/npr-one-backend-proxy-php/tree/main/docs#readme"
},
"config": {
"preferred-install": "dist"
},
"autoload": {
"psr-4": {
"NPR\\One\\": "src/"
}
},
"require": {
"php": ">=7.3.0",
"guzzlehttp/guzzle": "~6.0",
"php-di/php-di": "^6.0"
},
"require-dev": {
"phpunit/phpunit": "^8",
"phpdocumentor/phpdocumentor": "2.*",
"evert/phpdoc-md": "0.2.0",
"phly/changelog-generator": "^2.1"
},
"scripts": {
"test:unit": "./vendor/bin/phpunit tests/unit --verbose"
}
}