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
19 changes: 19 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,22 @@ jobs:
- name: Composer ${{ matrix.test }}-${{ matrix.os }}
run: |
composer ${{ matrix.test }}

security-audit:
# Audits the committed lock file, which is what Dependabot scans. Kept out of
# the matrix above because --prefer-lowest deliberately resolves to the oldest
# versions the constraints allow, which will always carry advisories.
name: Composer audit
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.4
extensions: curl, json
coverage: none
- name: Audit composer.lock
run: |
composer audit --locked
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/vendor/
/.idea/
clover.xml
infection.log
.phpunit.result.cache
CLAUDE.md
1 change: 1 addition & 0 deletions .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ pull_request_rules:
conditions:
- author=dependabot[bot]
- check-success~=^test*
- check-success=Composer audit
actions:
merge:
method: merge
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": "^8.4",
"php": "^8.4.1",
"guzzlehttp/guzzle": "^7.5",
"hyperized/value-objects": "^2.0.0"
},
Expand Down
Loading