-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.05 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.05 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
{
"name": "convertkit/convertkitapi",
"description": "Kit PHP SDK for the Kit API",
"keywords": [
"convertkit",
"kit",
"api",
"forms",
"tags",
"sequences",
"broadcasts",
"emails",
"subscribers"
],
"homepage": "https://developers.kit.com/welcome",
"license": "GPLv3",
"authors": [
{
"name": "Kit and contributors",
"homepage": "https://github.com/kit/convertkitsdk-php/contributors"
}
],
"require": {
"php": ">=8.0",
"guzzlehttp/guzzle": "^7.0",
"monolog/monolog": "^2.5|^3.0"
},
"require-dev": {
"vlucas/phpdotenv": "^5.5",
"phpunit/phpunit": "^5.7 || ^9.0",
"squizlabs/php_codesniffer": "^3.3",
"phpstan/phpstan": "^2.0"
},
"autoload": {
"psr-4": {
"ConvertKit_API\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"create-docs": "phpDocumentor --directory=src --target=docs --template='vendor/saggre/phpdocumentor-markdown/themes/markdown'"
}
}