Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tzsk committed Mar 26, 2024
1 parent d17eb2d commit b6ac9c0
Show file tree
Hide file tree
Showing 5 changed files with 76 additions and 76 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Check & fix styling
on: [push, pull_request]

jobs:
php-cs-fixer:
pint:
runs-on: ubuntu-latest

steps:
Expand All @@ -15,7 +15,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "8.1"
php-version: "8.2"
coverage: none

- name: Cache composer dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/psalm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "8.1"
php-version: "8.2"
coverage: none

- name: Cache composer dependencies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest]
php: [8.1, '8.2']
laravel: ['8.*', '9.*', '10.*', '11.*']
php: [8.1, "8.2"]
laravel: ["8.*", "9.*", "10.*", "11.*"]
dependency-version: [prefer-stable]
include:
- laravel: 10.*
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo, xdebug
coverage: none

- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
"require": {
"php": "^8.0",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
"intervention/image": "^2.5|^3.4",
"laravel/pint": "^1.10"
"intervention/image": "^2.5|^3.4"
},
"require-dev": {
"laravel/legacy-factories": "^1.0",
"laravel/pint": "^1.14",
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
"phpunit/phpunit": "^9.3|^10.5",
"vimeo/psalm": "^5.0"
Expand Down
136 changes: 68 additions & 68 deletions composer.lock

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

0 comments on commit b6ac9c0

Please sign in to comment.