Skip to content

Commit 1eb355d

Browse files
committed
chore: bumps dependencies
1 parent 9b76175 commit 1eb355d

File tree

4 files changed

+23
-17
lines changed

4 files changed

+23
-17
lines changed

.github/workflows/formats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
fail-fast: true
1111
matrix:
1212
os: [ubuntu-latest]
13-
php: [8.4]
13+
php: [8.2]
1414
dependency-version: [prefer-stable]
1515

1616
name: Formats P${{ matrix.php }} - ${{ matrix.os }} - ${{ matrix.dependency-version }}

.github/workflows/tests.yml

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,15 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
os: [ubuntu-latest]
12-
php: [8.1, 8.2, 8.3, 8.4]
13-
laravel: [12.*, 11.*, 10.*, 9.*]
12+
php: [8.2, 8.3, 8.4]
13+
laravel: [12.*]
14+
pest: [3, 4]
1415
dependency-version: [prefer-lowest, prefer-stable]
1516
exclude:
16-
- php: 8.1
17-
laravel: 11.*
18-
- php: 8.1
19-
laravel: 12.*
17+
- php: 8.2
18+
pest: 4
2019

21-
name: Tests P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.os }} - ${{ matrix.dependency-version }}
20+
name: Tests P${{ matrix.php }} - P${{ matrix.pest }} - L${{ matrix.laravel }} - ${{ matrix.os }} - ${{ matrix.dependency-version }}
2221
steps:
2322

2423
- name: Checkout
@@ -37,6 +36,12 @@ jobs:
3736
extensions: dom, mbstring, zip
3837
coverage: none
3938

39+
- name: Require Pest Version
40+
run: >
41+
composer require
42+
"pestphp/pest:${{ matrix.pest }}"
43+
--no-interaction --no-update
44+
4045
- name: Require Laravel Version
4146
run: >
4247
composer require

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@
66
/vendor/
77
*.swp
88
*.swo
9+
.idea/

composer.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@
1010
}
1111
],
1212
"require": {
13-
"php": "^8.1.0",
14-
"guzzlehttp/guzzle": "^7.9.2",
15-
"laravel/framework": "^9.46.0|^10.34.2|^11.29.0|^12.0",
16-
"openai-php/client": "^0.10.3"
13+
"php": "^8.2.0",
14+
"guzzlehttp/guzzle": "^7.9.3",
15+
"laravel/framework": "^12.12",
16+
"openai-php/client": "^0.11.0"
1717
},
1818
"require-dev": {
19-
"laravel/pint": "^1.18.1",
20-
"pestphp/pest": "^2.35.1|^3.5.0",
21-
"pestphp/pest-plugin-arch": "^2.7.0|^3.0.0",
22-
"phpstan/phpstan": "^1.12.7",
23-
"symfony/var-dumper": "^6.4.0|^7.1.5"
19+
"laravel/pint": "^1.22.0",
20+
"pestphp/pest": "^3.8.2|^4.0.0",
21+
"pestphp/pest-plugin-arch": "^3.1.1|^4.0.0",
22+
"phpstan/phpstan": "^1.12.25",
23+
"symfony/var-dumper": "^7.2.6"
2424
},
2525
"autoload": {
2626
"psr-4": {

0 commit comments

Comments
 (0)