Skip to content

Commit

Permalink
Allow more versions for dev packages
Browse files Browse the repository at this point in the history
  • Loading branch information
ipf committed Jan 10, 2025
1 parent 781f98c commit 0e2c9cb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
matrix:
env:
- { php: 8.1 }
- { php: 8.2 }

env: ${{ matrix.env }}

Expand Down
2 changes: 1 addition & 1 deletion .php-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.1
8.2
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"description": "OAI-PMH Model",
"type": "library",
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"rector/rector": "^0.15.23",
"phpstan/phpstan": "^1.7"
"friendsofphp/php-cs-fixer": "*",
"rector/rector": "*",
"phpstan/phpstan": "*"
},
"license": "AGPL-3.0-or-later",
"autoload": {
Expand All @@ -15,13 +15,13 @@
},
"authors": [{
"name": "Ingo Pfennigstorf",
"email": "i.pfennigstorf@gmail.com"
"email": "pfennigstorf@sub.uni-goettingen.de"
}],
"require": {
"php": "^8.1",
"jms/serializer": "^3.17",
"jms/serializer": "^4.0 || ^5.0",
"subugoe/iiif-model": "^0.2.4",
"doctrine/collections": "^2.0"
"doctrine/collections": "*"
},
"scripts": {
"lint": [
Expand All @@ -30,4 +30,4 @@
"phpstan analyze src --level=5"
]
}
}
}

0 comments on commit 0e2c9cb

Please sign in to comment.