Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
203 changes: 0 additions & 203 deletions .github/copilot-instructions.md

This file was deleted.

5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ jobs:
- name: Check composer.json normalization
run: composer normalize --diff --dry-run

- name: Check README examples are in sync
run: |
vendor/bin/readme-examples-sync
git diff --exit-code README.md || (echo "README.md is out of sync with example files. Run 'vendor/bin/readme-examples-sync' and commit the changes." && exit 1)

- name: Check dependencies
run: vendor/bin/composer-dependency-analyser

Expand Down
37 changes: 0 additions & 37 deletions .github/workflows/copilot-setup-steps.yml

This file was deleted.

41 changes: 0 additions & 41 deletions captainhook.json

This file was deleted.

9 changes: 6 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,13 @@
"php": "^8.4"
},
"require-dev": {
"captainhook/captainhook-phar": "^5.25",
"ergebnis/composer-normalize": "^2.47",
"friendsofphp/php-cs-fixer": "^3.85",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-phpunit": "^2.0",
"phpunit/phpunit": "^12.3",
"ruudk/readme-examples-sync-hook": "^1.0",
"ruudk/readme-examples-sync-hook": "^2.0",
"shipmonk/composer-dependency-analyser": "^1.8",
"ticketswap/php-cs-fixer-config": "^1.0",
"ticketswap/phpstan-error-formatter": "^1.1"
Expand All @@ -41,9 +40,13 @@
},
"config": {
"allow-plugins": {
"captainhook/captainhook-phar": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"post-install-cmd": [
"command -v lefthook >/dev/null 2>&1 && lefthook install || true"
]
}
}
Loading