-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1.02 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
{
"name": "ericnorris/gcp-auth-contrib",
"description": "Unofficial Google Cloud Platform authentication library focusing on speed and correctness.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Eric Norris",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"ericnorris\\GCPAuthContrib\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ericnorris\\GCPAuthContrib\\Tests\\": "tests"
}
},
"require": {
"guzzlehttp/psr7": "^1.6",
"guzzlehttp/guzzle": "^6",
"psr/cache": "^1.0",
"symfony/cache": "^5.1",
"firebase/php-jwt": "^5.2",
"google/auth": "^1.13",
"fig/http-message-util": "^1.1"
},
"require-dev": {
"vimeo/psalm": "^3.15",
"phpunit/phpunit": "^9.3",
"spatie/phpunit-snapshot-assertions": "^4.2",
"mikey179/vfsstream": "^1.6",
"php-coveralls/php-coveralls": "^2.2"
}
}