-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.75 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.75 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
{
"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/"
}
},
"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 ./ -s -v",
"phpcbf": "vendor/bin/phpcbf ./ -s -v",
"phpcs-tests": "vendor/bin/phpcs ./tests --standard=phpcs.tests.xml -s -v",
"phpcbf-tests": "vendor/bin/phpcbf ./tests --standard=phpcs.tests.xml -s -v",
"phpstan": "vendor/bin/phpstan analyse --memory-limit=1250M",
"php-coding-standards": "vendor/bin/phpcs ./ -s -v",
"fix-php-coding-standards": "vendor/bin/phpcbf ./ -s -v",
"php-coding-standards-on-tests": "vendor/bin/phpcs ./tests --standard=phpcs.tests.xml -s -v",
"fix-php-coding-standards-on-tests": "vendor/bin/phpcbf ./tests --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"
}
}