Skip to content

Commit 5370544

Browse files
committed
removes lock file
1 parent 4572b43 commit 5370544

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
# https://www.php.net/supported-versions.php
17-
php-version: ["8.3", "8.4", "8.5"]
17+
php-version: ["8.1", "8.2", "8.3", "8.4", "8.5"]
1818

1919
name: PHP OpenCage Geocode
2020

@@ -31,7 +31,9 @@ jobs:
3131
coverage: none
3232

3333
- name: Install dependencies
34-
run: composer install --no-progress --no-suggest --no-interaction
34+
run: |
35+
rm composer.lock
36+
composer install --no-progress --no-suggest --no-interaction
3537
3638
- name: Run tests
3739
run: |

composer.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@
2020
"require-dev": {
2121
"phpunit/phpunit": "^10.5 || ^11.0 || ^12.0",
2222
"squizlabs/php_codesniffer": "^3.7",
23-
"phpstan/phpstan": "^2.0.0",
24-
"phpunit/php-code-coverage": "^10.1.16 || ^11.0.11 || ^12.4"
23+
"phpstan/phpstan": "^2.0.0"
2524
},
2625
"archive": {
2726
"exclude": ["vendor", ".DS_Store"]

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)