Skip to content

Commit ce53870

Browse files
authored
Merge pull request #28 from ConvertKit/fix-dependencies
Bump dependencies
2 parents f650ad1 + 43a7f07 commit ce53870

File tree

2 files changed

+25
-9
lines changed

2 files changed

+25
-9
lines changed

.gitignore

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
src/logs
2-
.idea
31
.DS_Store
4-
.phpunit.result.cache
5-
2+
.env
3+
.env.testing
4+
composer.lock
5+
phpstan.neon
6+
src/logs
7+
vendor

composer.json

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,28 @@
11
{
22
"name": "convertkit/convertkitapi",
3-
"description": "ConvertKit API SDK",
4-
"keywords": ["convertkit", "api", "forms"],
3+
"description": "ConvertKit PHP SDK for the ConvertKit API",
4+
"keywords": [
5+
"convertkit",
6+
"api",
7+
"forms"
8+
],
9+
"homepage": "https://convertkit.com/",
10+
"license": "GPLv3",
11+
"authors": [
12+
{
13+
"name": "ConvertKit and contributors",
14+
"homepage": "https://github.com/convertkit/convertkitsdk-php/contributors"
15+
}
16+
],
517
"require": {
6-
"php": ">=5.5",
7-
"guzzlehttp/guzzle": "^6.3",
18+
"php": ">=7.4",
19+
"guzzlehttp/guzzle": "^6.5|^7.0",
820
"monolog/monolog": "^2.0"
921
},
1022
"require-dev": {
11-
"phpunit/phpunit": "^6.0"
23+
"phpunit/phpunit": "^5.7 || ^9.0",
24+
"squizlabs/php_codesniffer": "^3.3",
25+
"phpstan/phpstan": "^1.2"
1226
},
1327
"autoload": {
1428
"psr-4": {

0 commit comments

Comments
 (0)