Skip to content

Commit

Permalink
Maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
Ferror committed Dec 31, 2023
1 parent f7c52ae commit c966d34
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
/.github export-ignore
/tests export-ignore
.gitattributes export-ignore
.gitignore export-ignore
phpstan.neon export-ignore
docker-compose.yaml export-ignore
Dockerfile export-ignore
Makefile export-ignore
phpunit.xml export-ignore
phpstan.neon export-ignore
README.md export-ignore
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
php: [8.2, 8.3]

steps:
- # Copies the repository files to the Action Runner
Expand All @@ -17,7 +20,7 @@ jobs:
name: Setup PHP
uses: shivammathur/[email protected]
with:
php-version: 8.3
php-version: ${{ matrix.php }}

- # Installs and caches PHP dependencies
name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"symfony/console": "^5.4 || ^6.4",
"symfony/dependency-injection": "^5.4 || ^6.4",
"symfony/http-kernel": "^5.4 || ^6.4",
"symfony/routing": "^5.4 || 6.4"
"symfony/routing": "^5.4 || ^6.4"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
Expand Down

0 comments on commit c966d34

Please sign in to comment.