Skip to content

Commit

Permalink
Fix lowest dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
BenMorel committed Oct 10, 2021
1 parent 022a01d commit 4330645
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ jobs:
php-version:
- "7.4"
- "8.0"
deps:
- "highest"
include:
- php-version: "7.4"
deps: "lowest"

services:
mysql:
Expand All @@ -57,6 +62,8 @@ jobs:

- name: Install composer dependencies
uses: "ramsey/composer-install@v1"
with:
dependency-versions: ${{ matrix.deps }}

- name: Run PHPUnit
run: vendor/bin/phpunit
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
"license": "MIT",
"require": {
"brick/geo": "dev-master",
"doctrine/orm": "^2.0"
"doctrine/orm": "^2.8"
},
"require-dev": {
"doctrine/cache": "^1.11",
"doctrine/data-fixtures": "^1.0",
"phpunit/phpunit": "^8.0 || ^9.0",
"phpunit/phpunit": "^9.0",
"php-coveralls/php-coveralls": "^2.0",
"vimeo/psalm": "4.3.1"
},
Expand Down

0 comments on commit 4330645

Please sign in to comment.