From fa03b12ca528614b927996e6af40aa8c571fef2f Mon Sep 17 00:00:00 2001 From: Gustavo Freze Date: Sat, 27 Jun 2026 10:37:24 -0300 Subject: [PATCH 1/2] chore: Exclude Claude Python scripts from Linguist language stats. GitHub Linguist computes language share over the HEAD tree, so the existing export-ignore entries (which only affect the Packagist tarball) do not stop the .claude Python hooks from outweighing src in small repos. Mark them linguist-vendored and ignore their bytecode cache. --- .../skills/tiny-blocks-create/assets/config/.gitattributes | 3 +++ .claude/skills/tiny-blocks-create/assets/config/.gitignore | 4 ++++ .gitattributes | 3 +++ .gitignore | 4 ++++ 4 files changed, 14 insertions(+) diff --git a/.claude/skills/tiny-blocks-create/assets/config/.gitattributes b/.claude/skills/tiny-blocks-create/assets/config/.gitattributes index 2bd9baa..7f1ede8 100644 --- a/.claude/skills/tiny-blocks-create/assets/config/.gitattributes +++ b/.claude/skills/tiny-blocks-create/assets/config/.gitattributes @@ -2,6 +2,9 @@ *.php text diff=php +# Keep Claude tooling scripts out of GitHub language stats +/.claude/**/*.py linguist-vendored + # Dev-only, excluded from the Packagist tarball /.github export-ignore /tests export-ignore diff --git a/.claude/skills/tiny-blocks-create/assets/config/.gitignore b/.claude/skills/tiny-blocks-create/assets/config/.gitignore index c8f4364..55ebe78 100644 --- a/.claude/skills/tiny-blocks-create/assets/config/.gitignore +++ b/.claude/skills/tiny-blocks-create/assets/config/.gitignore @@ -26,3 +26,7 @@ infection.log Thumbs.db .DS_Store Desktop.ini + +# Cache from .claude Python hooks +__pycache__/ +*.pyc diff --git a/.gitattributes b/.gitattributes index 2bd9baa..7f1ede8 100644 --- a/.gitattributes +++ b/.gitattributes @@ -2,6 +2,9 @@ *.php text diff=php +# Keep Claude tooling scripts out of GitHub language stats +/.claude/**/*.py linguist-vendored + # Dev-only, excluded from the Packagist tarball /.github export-ignore /tests export-ignore diff --git a/.gitignore b/.gitignore index c8f4364..55ebe78 100644 --- a/.gitignore +++ b/.gitignore @@ -26,3 +26,7 @@ infection.log Thumbs.db .DS_Store Desktop.ini + +# Cache from .claude Python hooks +__pycache__/ +*.pyc From 6fb5c90b9c9deffe46443eaeb92e83bb8437d24c Mon Sep 17 00:00:00 2001 From: Gustavo Freze Date: Sat, 27 Jun 2026 10:40:06 -0300 Subject: [PATCH 2/2] chore: update guzzlehttp/psr7 dependency to version ^2.12. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 495711a..a3a94e7 100644 --- a/composer.json +++ b/composer.json @@ -34,7 +34,7 @@ }, "require-dev": { "ergebnis/composer-normalize": "^2.52", - "guzzlehttp/psr7": "^2.9", + "guzzlehttp/psr7": "^2.12", "infection/infection": "^0.33", "phpstan/phpstan": "^2.2", "phpunit/phpunit": "^13.1",