Skip to content

Commit

Permalink
fix: CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tchapi committed Sep 2, 2023
1 parent df4ada0 commit eeb4130
Show file tree
Hide file tree
Showing 3 changed files with 87 additions and 21 deletions.
16 changes: 0 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,6 @@ jobs:
docker-php-ext-install gd
- name: Install Composer
run: wget -qO - https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer --quiet
- name: Cache Composer dependencies
uses: actions/cache@v3
with:
path: ~/.composer/cache
key: composer-php${{ matrix.php }}-highest-
restore-keys: |
composer-php${{ matrix.php }}-highest-
composer-
- name: Validate Composer
run: composer validate
- name: Install highest dependencies with Composer
Expand Down Expand Up @@ -93,14 +85,6 @@ jobs:
docker-php-ext-install pdo pdo_mysql intl gd
- name: Install Composer
run: wget -qO - https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer --quiet
- name: Cache Composer dependencies
uses: actions/cache@v3
with:
path: ~/.composer/cache
key: composer-php${{ matrix.php }}-${{ matrix.dependencies }}-
restore-keys: |
composer-php${{ matrix.php }}-${{ matrix.dependencies }}-
composer-
- name: Install lowest dependencies with Composer
if: matrix.dependencies == 'lowest'
run: composer update --no-progress --prefer-stable --prefer-lowest --ansi
Expand Down
6 changes: 4 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"require": {
"php": "^8.0",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-gd": "*",
"ext-iconv": "*",
"composer-runtime-api": "^2",
"dantsu/php-osm-static-api": "^0.5.0",
"doctrine/annotations": "^1.12",
Expand All @@ -32,6 +32,7 @@
"symfony/property-access": "^5.4.21",
"symfony/property-info": "^5.4.21",
"symfony/proxy-manager-bridge": "^5.4.21",
"symfony/runtime": "^5.4.21",
"symfony/security-bundle": "^5.4.21",
"symfony/security-guard": "^5.4.21",
"symfony/serializer": "^5.4.21",
Expand Down Expand Up @@ -62,7 +63,8 @@
},
"allow-plugins": {
"composer/package-versions-deprecated": true,
"symfony/flex": true
"symfony/flex": true,
"symfony/runtime": true
}
},
"autoload": {
Expand Down
86 changes: 83 additions & 3 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit eeb4130

Please sign in to comment.