Skip to content

Commit

Permalink
:octocat:
Browse files Browse the repository at this point in the history
  • Loading branch information
codemasher committed May 12, 2024
1 parent 173a498 commit 3899310
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
1 change: 1 addition & 0 deletions .phan/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,6 @@
],
'suppress_issue_types' => [
'PhanUndeclaredGlobalVariable', // happens in get-token examples
'PhanAccessMethodInternal', // interface methods tagged as @internal
],
];
13 changes: 10 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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",
Expand All @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
cacheDirectory=".build/phpunit.cache"
cacheResultFile=".build/phpunit.result.cache"
Expand Down

0 comments on commit 3899310

Please sign in to comment.