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
6 changes: 3 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ updates:
prefix: "chore"
include: "scope"
labels:
- "area: dependencies"
- "dependencies"

# Enable version updates for GitHub Actions
- package-ecosystem: "github-actions"
Expand All @@ -30,5 +30,5 @@ updates:
prefix: "chore"
include: "scope"
labels:
- "area: dependencies"
- "area: ci/cd"
- "dependencies"
- "github-actions"
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,6 @@ jobs:

- name: Upload Snyk results to GitHub Code Scanning
continue-on-error: true
uses: github/codeql-action/upload-sarif@v3
uses: github/codeql-action/upload-sarif@v4
with:
sarif_file: snyk.sarif
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ jobs:
id: semantic
with:
# https://github.com/semantic-release/commit-analyzer/issues/65
# https://github.com/romap0/semantic-release-unsquash/issues/7
extra_plugins: |
semantic-release-unsquash@latest
@semantic-release/changelog@latest
@semantic-release/git@latest
conventional-changelog-conventionalcommits@latest
Expand Down
1 change: 0 additions & 1 deletion .releaserc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
}
],
"plugins": [
"semantic-release-unsquash",
[
"@semantic-release/changelog",
{
Expand Down
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,11 @@
"analysis": "@check --tasks=phpstan",
"check": "@php -d max_execution_time=0 -d memory_limit=-1 -f ./vendor/bin/grumphp -- run",
"ci": "@check --no-interaction",
"lint": "@check --tasks=phpcsfixer,phplint,phpstan,rector",
"lint": "@check --tasks=phpcsfixer,phplint,rector",
"quality": "@check --tasks=phpmnd,phpparser",
"rector": "@php -d max_execution_time=0 -d memory_limit=-1 -f ./vendor/bin/rector -- process --ansi --clear-cache",
"security": "@check --tasks=securitychecker_roave",
"test": "@check --tasks=phpunit",
"test:coverage": "vendor/bin/phpunit --coverage-clover=coverage.xml"
"test:coverage": "@php -d max_execution_time=0 -d memory_limit=-1 ./vendor/bin/phpunit --coverage-clover=coverage.xml"
}
}
8 changes: 4 additions & 4 deletions grumphp.yml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ grumphp:

# Psalm - Additional Static Analysis
#FIXME - Temporarily disabled for PHP 8.4 compatibility
# psalm:
# config: psalm.xml.dist
# ignore_patterns: ['vendor']
# threads: 4
#psalm:
# config: psalm.xml.dist
# ignore_patterns: ['vendor']
# threads: 4

# Rector - Automated Refactoring
rector: ~
Expand Down
Loading