From f6971204c93eab35a3e2aefaff79d26ea6f3081d Mon Sep 17 00:00:00 2001 From: smiley Date: Mon, 29 Apr 2024 23:34:43 +0200 Subject: [PATCH] :octocat: --- .gitattributes | 1 + .github/workflows/ci.yml | 3 ++- composer.json | 11 +++++++++-- phpunit.xml.dist | 4 ++-- 4 files changed, 14 insertions(+), 5 deletions(-) diff --git a/.gitattributes b/.gitattributes index cfa24c6..401ae60 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,5 +1,6 @@ /.build export-ignore /.github export-ignore +/.idea export-ignore /.phan export-ignore /.phpdoc export-ignore /docs export-ignore diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 365724c..4be5c11 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -124,7 +124,8 @@ jobs: uses: shivammathur/setup-php@v2 with: php-version: "8.3" - extensions: simplexml + extensions: simplexml, ${{ env.PHP_EXTENSIONS }} + ini-values: ${{ env.PHP_INI_VALUES }} coverage: none tools: phpDocumentor diff --git a/composer.json b/composer.json index d3c8037..b10a309 100644 --- a/composer.json +++ b/composer.json @@ -15,6 +15,12 @@ "homepage":"https://github.com/chillerlan/php-library-template/graphs/contributors" } ], + "funding": [ + { + "type": "Ko-Fi", + "url": "https://ko-fi.com/codemasher" + } + ], "homepage": "https://github.com/chillerlan/php-library-template", "support": { "docs": "https://php-library-template.readthedocs.io", @@ -45,8 +51,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 647daf9..aaf4f64 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -1,13 +1,13 @@ - ./tests/ + tests