-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
34 lines (34 loc) · 908 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
{
"name": "mrmarkfrench/silverpop-php-connector",
"type": "library",
"description": "A connector SDK library for applications integrating with Silverpop, including the Silverpop Universal Behavior API",
"keywords": ["Silverpop"],
"version": "1.6.5",
"homepage": "https://github.com/mrmarkfrench/silverpop-php-connector",
"authors": [
{
"name": "Mark French"
}
],
"license": "MIT",
"require": {
"php" : ">7.0",
"ext-curl": "*",
"ext-xml": "*",
"phpseclib/phpseclib": "~2.0",
"guzzlehttp/guzzle": "*"
},
"require-dev": {
"phpunit/phpunit": "*"
},
"autoload": {
"psr-4": {
"SilverpopConnector\\": "src/SilverpopConnector"
}
},
"autoload-dev" : {
"psr-4" : {
"SilverpopConnector\\Tests\\" : "test/tests"
}
}
}