-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathcomposer.json
38 lines (38 loc) · 941 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
36
37
38
{
"name": "convertkit/convertkitapi",
"description": "ConvertKit PHP SDK for the ConvertKit API",
"keywords": [
"convertkit",
"api",
"forms"
],
"homepage": "https://convertkit.com/",
"license": "GPLv3",
"authors": [
{
"name": "ConvertKit and contributors",
"homepage": "https://github.com/convertkit/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/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"create-docs": "phpDocumentor --directory=src --target=docs --template='vendor/saggre/phpdocumentor-markdown/themes/markdown'"
}
}