Skip to content

Commit

Permalink
WIP PHP 8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
PowerKiKi committed Aug 25, 2023
1 parent 433ac3e commit 54f193e
Show file tree
Hide file tree
Showing 46 changed files with 959 additions and 1,140 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
matrix:
php-version:
- '8.1'
- '8.2'

name: PHP ${{ matrix.php-version }}

Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
php-version: 8.2
coverage: none
extensions: bcmath, fileinfo, json, pdo
tools: cs2pr
Expand All @@ -76,7 +76,7 @@ jobs:
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
php-version: 8.2
coverage: none
extensions: bcmath, fileinfo, json, pdo

Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
php-version: 8.2
coverage: pcov
extensions: bcmath, fileinfo, json, pdo

Expand Down
2 changes: 1 addition & 1 deletion .scrutinizer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ build:
analysis:
image: default-bionic
environment:
php: 8.1.2
php: 8.2
tests:
override:
- php-scrutinizer-run
Expand Down
32 changes: 16 additions & 16 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,32 +38,32 @@
}
},
"require": {
"php": "^8.1",
"php": "^8.2",
"ext-bcmath": "*",
"ext-fileinfo": "*",
"ext-json": "*",
"ext-pdo": "*",
"cakephp/chronos": "^2.3",
"doctrine/dbal": "^3.5",
"doctrine/migrations": "^3.5",
"doctrine/dbal": "^3.6",
"doctrine/migrations": "^3.6",
"ecodev/graphql-doctrine": "^8.0",
"imagine/imagine": "^1.3",
"laminas/laminas-diactoros": "^2.21",
"laminas/laminas-log": "^2.15",
"laminas/laminas-mail": "^2.19",
"laminas/laminas-permissions-acl": "^2.12",
"laminas/laminas-servicemanager": "^3.19",
"laminas/laminas-validator": "^2.26",
"laminas/laminas-view": "^2.25",
"mezzio/mezzio-session": "^1.11",
"moneyphp/money": "^4.0",
"spomky-labs/otphp": "^11.1",
"symfony/cache": "^5.4 || ^6.0"
"laminas/laminas-diactoros": "^3.0",
"laminas/laminas-log": "^2.16",
"laminas/laminas-mail": "^2.22",
"laminas/laminas-permissions-acl": "^2.14",
"laminas/laminas-servicemanager": "^3.20",
"laminas/laminas-validator": "^2.30",
"laminas/laminas-view": "^2.27",
"mezzio/mezzio-session": "^1.13",
"moneyphp/money": "^4.1",
"spomky-labs/otphp": "^11.2",
"symfony/cache": "^5.4 || ^6.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "@stable",
"laminas/laminas-config-aggregator": "^1.11",
"laminas/laminas-i18n": "^2.19",
"laminas/laminas-config-aggregator": "@stable",
"laminas/laminas-i18n": "@stable",
"mikey179/vfsstream": "@stable",
"phpstan/phpstan": "@stable",
"phpstan/phpstan-phpunit": "@stable",
Expand Down
Loading

0 comments on commit 54f193e

Please sign in to comment.