Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
christeredvartsen committed Jan 23, 2023
1 parent 4c2bd9a commit f8d6395
Show file tree
Hide file tree
Showing 4 changed files with 634 additions and 677 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ jobs:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: ['ubuntu-20.04']
php-versions: ['7.4', '8.0', '8.1']
operating-system: ['ubuntu-22.04']
php-versions: ['8.1', '8.2']
name: Run CI build
services:
memcached:
Expand All @@ -15,7 +15,7 @@ jobs:
- 11211:11211

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -35,12 +35,11 @@ jobs:

- name: Get Composer Cache Directory
id: composer-cache-dir
run: |
echo "::set-output name=dir::$(composer config cache-files-dir)"
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache-dir.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
Expand All @@ -57,4 +56,4 @@ jobs:
run: vendor/bin/psalm

- name: Check coding standard
run: php-cs-fixer fix --dry-run --diff
run: PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --dry-run --diff
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@
}
],
"require": {
"php": ">=7.4"
"php": ">=8.1"
},
"require-dev": {
"ext-apcu": "*",
"ext-memcached": "*",
"imbo/imbo": "dev-main",
"imbo/imbo-coding-standard": "^2.0",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.16.1",
"vimeo/psalm": "^4.9"
"psalm/plugin-phpunit": "^0.18.4",
"vimeo/psalm": "^5.5"
},
"suggest": {
"ext-memcached": "Enables usage of the Memcached cache adapter",
Expand Down
Loading

0 comments on commit f8d6395

Please sign in to comment.