-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 909 Bytes
/
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
{
"name": "promorepublic/google-my-business-api-client",
"description": "Api client for google my business",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ihor K.",
"email": "lov3catch@gmail.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "git@github.com:lov3catch/google-my-business-mock.git"
}
],
"autoload": {
"psr-4": {"GoogleMyBusiness\\": "src/"}
},
"autoload-dev": {
"psr-4": {"GoogleMyBusiness\\Tests\\": "tests/"}
},
"minimum-stability": "alpha",
"require": {
"php": "^7.4|^8.0",
"psr/http-client": "^1.0",
"phpstan/phpstan": "^0.12.88",
"phpunit/phpunit": "^9.5",
"symfony/http-client": "^5.3"
},
"require-dev": {
"promorepublic/google-my-business-mock": "^0.0.6"
}
}