Skip to content

Commit

Permalink
Merge pull request #3 from GrahamCampbell/php-83
Browse files Browse the repository at this point in the history
PHP 8.3 support
  • Loading branch information
mnapoli committed Jul 27, 2023
2 parents 429e61f + 45ef450 commit e451f81
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,21 @@ jobs:
timeout-minutes: 15
strategy:
matrix:
php: [ '8.0', '8.1', '8.2' ]
php: [ '8.0', '8.1', '8.2', '8.3' ]
dependency-version: [ '' ]
include:
- php: '8.0'
dependency-version: '--prefer-lowest'
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer:v2
coverage: none
- name: Cache Composer dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.composer/cache
key: php-${{ matrix.php }}-composer-locked-${{ hashFiles('composer.lock') }}
Expand All @@ -44,15 +44,15 @@ jobs:
name: Coding standards
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
php-version: '8.2'
tools: composer:v2, cs2pr
coverage: none
- name: Cache Composer dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.composer/cache
key: php-composer-locked-${{ hashFiles('composer.lock') }}
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
"async-aws/ssm": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"phpunit/phpunit": "^9.6.10",
"mnapoli/hard-mode": "^0.3.0",
"phpstan/phpstan": "^1"
"phpstan/phpstan": "^1.10.26"
},
"config": {
"allow-plugins": {
Expand Down

0 comments on commit e451f81

Please sign in to comment.