-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
47 lines (47 loc) · 1.13 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
39
40
41
42
43
44
45
46
47
{
"name": "metaline/activecampaign-sdk",
"description": "A simple PHP wrapper for the ActiveCampaign API v3",
"keywords": [
"activecampaign",
"api",
"sdk"
],
"homepage": "https://github.com/metaline/activecampaign-sdk",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Daniele De Nobili",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"source": "https://github.com/metaline/activecampaign-sdk",
"issues": "https://github.com/metaline/activecampaign-sdk/issues"
},
"require": {
"php": "^7.3 || ^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"php-coveralls/php-coveralls": "^2.6"
},
"autoload": {
"psr-4": {
"MetaLine\\ActiveCampaign\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MetaLine\\ActiveCampaign\\Tests\\": "tests/"
}
},
"scripts": {
"test": [
"phpunit"
]
}
}