-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
35 lines (35 loc) · 864 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": "pmatseykanets/marketo-client",
"description": "Marketo REST API Client",
"keywords": ["marketo", "REST", "API", "client"],
"homepage": "https://github.com/pmatseykanets/marketo-client-php",
"license": "MIT",
"authors": [
{
"name": "Peter Matseykanets",
"email": "pmatseykanets@gmail.com",
"homepage": "https://github.com/pmatseykanets"
}
],
"require": {
"php": ">=7.1.3",
"guzzlehttp/guzzle": "^6.3"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"mockery/mockery": "^1.2"
},
"autoload": {
"psr-4": {
"MarketoClient\\": "src"
},
"files": [
"src/Support/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
}
}