-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.91 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.91 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
52
53
54
55
56
57
58
59
60
61
{
"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",
"saggre/phpdocumentor-markdown": "^1.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'",
"phpcs": "vendor/bin/phpcs --standard=phpcs.xml -s -v",
"phpcbf": "vendor/bin/phpcbf --standard=phpcs.tests.xml -s -v",
"phpcs-tests": "vendor/bin/phpcs --standard=phpcs.xml -s -v",
"phpcbf-tests": "vendor/bin/phpcbf --standard=phpcs.tests.xml -s -v",
"phpstan": "vendor/bin/phpstan analyse --memory-limit=1250M",
"php-coding-standards": "vendor/bin/phpcs --standard=phpcs.xml -s -v",
"fix-php-coding-standards": "vendor/bin/phpcbf --standard=phpcs.xml -s -v",
"php-coding-standards-on-tests": "vendor/bin/phpcs --standard=phpcs.tests.xml -s -v",
"fix-php-coding-standards-on-tests": "vendor/bin/phpcbf --standard=phpcs.tests.xml -s -v",
"php-static-analysis": "vendor/bin/phpstan analyse --memory-limit=1250M",
"test": "vendor/bin/phpunit --verbose --stop-on-failure @additional_args"
}
}