Skip to content

Commit b5bbd2a

Browse files
committed
chore: use Nutgram next + update PHP and Laravel versions
1 parent af17ad7 commit b5bbd2a

File tree

2 files changed

+12
-16
lines changed

2 files changed

+12
-16
lines changed

.github/workflows/php.yml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,13 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
php: [ 8.2, 8.3, 8.4, 8.5 ]
13-
laravel: [ 9.*, 10.*, 11.*, 12.* ]
12+
php: [ 8.4, 8.5 ]
13+
laravel: [ 11.*, 12.* ]
1414
include:
1515
- laravel: 12.*
1616
testbench: 10.*
1717
- laravel: 11.*
1818
testbench: 9.*
19-
- laravel: 10.*
20-
testbench: 8.*
21-
- laravel: 9.*
22-
testbench: 7.*
2319

2420
name: PHP ${{ matrix.php }} + Laravel ${{ matrix.laravel }}
2521
steps:
@@ -51,7 +47,7 @@ jobs:
5147
- name: Setup PHP
5248
uses: shivammathur/setup-php@v2
5349
with:
54-
php-version: 8.2
50+
php-version: 8.4
5551
coverage: xdebug
5652

5753
- name: Validate composer.json and composer.lock
@@ -62,9 +58,9 @@ jobs:
6258
uses: actions/cache@v4
6359
with:
6460
path: vendor
65-
key: ${{ runner.os }}-php-8.2-${{ hashFiles('**/composer.json') }}
61+
key: ${{ runner.os }}-php-8.4-${{ hashFiles('**/composer.json') }}
6662
restore-keys: |
67-
${{ runner.os }}-php-8.2-
63+
${{ runner.os }}-php-8.4-
6864
6965
- name: Install dependencies
7066
if: steps.composer-cache.outputs.cache-hit != 'true'
@@ -88,7 +84,7 @@ jobs:
8884
- name: Setup PHP
8985
uses: shivammathur/setup-php@v2
9086
with:
91-
php-version: 8.2
87+
php-version: 8.4
9288
coverage: none
9389

9490
- name: Validate composer.json and composer.lock

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@
2828
"minimum-stability": "dev",
2929
"prefer-stable": true,
3030
"require": {
31-
"php": "^8.2",
32-
"nunomaduro/termwind": "^1.0|^2.0",
33-
"nutgram/nutgram": "^4.39.2"
31+
"php": "^8.4",
32+
"nunomaduro/termwind": "^2.0",
33+
"nutgram/nutgram": "dev-next as 5.0.0"
3434
},
3535
"require-dev": {
36-
"illuminate/testing": "^9.0|^10.0|^11.0|^12.0",
37-
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
38-
"pestphp/pest": "^1.1|^2.0|^3.0|^4.0",
36+
"illuminate/testing": "^11.0|^12.0",
37+
"orchestra/testbench": "^9.0|^10.0",
38+
"pestphp/pest": "^4.0",
3939
"vimeo/psalm": "^6.0"
4040
},
4141
"autoload": {

0 commit comments

Comments
 (0)