From 38993108ebe95b07e75ac54668cc7ecbefdd0c09 Mon Sep 17 00:00:00 2001 From: smiley Date: Sun, 12 May 2024 19:49:02 +0200 Subject: [PATCH] :octocat: --- .phan/config.php | 1 + composer.json | 13 ++++++++++--- phpunit.xml.dist | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.phan/config.php b/.phan/config.php index c387692..268c605 100644 --- a/.phan/config.php +++ b/.phan/config.php @@ -53,5 +53,6 @@ ], 'suppress_issue_types' => [ 'PhanUndeclaredGlobalVariable', // happens in get-token examples + 'PhanAccessMethodInternal', // interface methods tagged as @internal ], ]; diff --git a/composer.json b/composer.json index f2756d9..b7b6750 100644 --- a/composer.json +++ b/composer.json @@ -15,6 +15,12 @@ "homepage": "https://github.com/codemasher" } ], + "funding": [ + { + "type": "Ko-Fi", + "url": "https://ko-fi.com/codemasher" + } + ], "support": { "issues": "https://github.com/chillerlan/php-oauth/issues", "source": "https://github.com/chillerlan/php-oauth" @@ -38,7 +44,7 @@ "chillerlan/php-dotenv": "^3.0", "chillerlan/phpunit-http": "^1.0", "guzzlehttp/guzzle": "^7.8", - "monolog/monolog": "^3.5", + "monolog/monolog": "^3.6", "phan/phan": "^5.4", "phpmd/phpmd": "^2.15", "phpunit/phpunit": "^10.5", @@ -58,8 +64,9 @@ } }, "scripts": { - "phpunit": "@php vendor/bin/phpunit", - "phan": "@php vendor/bin/phan" + "phan": "@php vendor/bin/phan", + "phpcs": "@php vendor/bin/phpcs", + "phpunit": "@php vendor/bin/phpunit" }, "config": { "lock": false, diff --git a/phpunit.xml.dist b/phpunit.xml.dist index bf97ac7..207c1aa 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -1,6 +1,6 @@