Skip to content
Merged

8.4 #43

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
1 change: 1 addition & 0 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
php:
- "8.2"
- "8.3"
- "8.4"

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/qodana_code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
checks: write
strategy:
matrix:
php-versions: [ '8.2', '8.3']
php-versions: [ '8.2', '8.3', '8.4']
steps:
- uses: actions/checkout@v4
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
php:
- "8.2"
- "8.3"
- "8.4"

steps:
- name: Checkout
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
}
},
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4",
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"dotkernel/dot-cli": "^3.9",
"dotkernel/dot-dependency-injection": "^1.2",
"dotkernel/dot-errorhandler": "4.2.1",
Expand Down Expand Up @@ -82,6 +82,6 @@
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"static-analysis": "phpstan analyse"
"static-analysis": "phpstan analyse --memory-limit 1G"
}
}
1 change: 0 additions & 1 deletion phpcs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
<rule ref="LaminasCodingStandard">
<!-- Exclude rule -->
<exclude name="SlevomatCodingStandard.Namespaces.ReferenceUsedNamesOnly.ReferenceViaFullyQualifiedName" />
<exclude-pattern>src/Core/src/App/src/Migration/*</exclude-pattern>
<exclude-pattern>config/pipeline.php</exclude-pattern>
</rule>
</ruleset>
Loading