This repository was archived by the owner on Aug 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.36 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.36 KB
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
{
"name": "testmonitor/activecampaign",
"description": "ActiveCampaign API connector for APIv3",
"keywords": [
"activecampaign",
"active",
"campaign",
"api"
],
"authors": [
{
"name": "Thijs Kok",
"email": "tkok@testmonitor.com",
"homepage": "https://www.testmonitor.com/",
"role": "Lead Developer"
},
{
"name": "Stephan Grootveld",
"email": "sgrootveld@testmonitor.com",
"homepage": "https://www.testmonitor.com/",
"role": "Developer"
},
{
"name": "Frank Keulen",
"email": "fkeulen@testmonitor.com",
"homepage": "https://www.testmonitor.com/",
"role": "Developer"
}
],
"license": "MIT",
"type": "package",
"require": {
"php": ">=7.1.3",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.0.1"
},
"require-dev": {
"codedungeon/phpunit-result-printer": "^0.23.0",
"friendsofphp/php-cs-fixer": "^2.11",
"mockery/mockery": "~1.0",
"phploc/phploc": "^4.0",
"phpmd/phpmd": "^2.6",
"phpunit/phpunit": "~7.0",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"psr-4": {
"TestMonitor\\ActiveCampaign\\": "src/"
}
}
}