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
4 changes: 2 additions & 2 deletions .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Run tests
run: task tests-code-coverage
- name: Upload coverage report
uses: qltysh/qlty-action/coverage@v1
uses: qltysh/qlty-action/coverage@v2
with:
token: ${{secrets.QLTY_COVERAGE_TOKEN}}
files: build/logs/clover.xml
files: coverage/clover.xml
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## 3.4.0

Upgrading dependencies and code coverage pipeline.

## 3.3.0

Add PHP 8.5 to CI pipeline and address PHP 8.5 related lint errors. Update
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ composer require sprak3000/AnimeNewsNetworkDataAPI
## Continuous Integration

This project uses
[GitHubActions](https://github.com/sprak3000/AnimeNewsNetworkDataAPI/actions)
[GitHub Actions](https://github.com/sprak3000/AnimeNewsNetworkDataAPI/actions)
for build and continuous integration.

## Documentation
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@
],
"require": {
"php": "^8.3",
"guzzlehttp/guzzle": "7.15.2",
"guzzlehttp/guzzle-services": "1.7.1"
"guzzlehttp/guzzle": "7.15.3",
"guzzlehttp/guzzle-services": "1.7.3"
},
"require-dev": {
"ergebnis/composer-normalize": "2.52.0",
"phpunit/phpunit": "12.5.22",
"squizlabs/php_codesniffer": "3.7.2",
"phpstan/phpstan": "2.1.20",
"phpstan/phpstan-phpunit": "^2.0"
"phpunit/phpunit": "12.5.33",
"squizlabs/php_codesniffer": "3.13.6",
"phpstan/phpstan": "2.2.8",
"phpstan/phpstan-phpunit": "2.0.18"
},
"autoload": {
"psr-4": {
Expand Down
Loading
Loading