Skip to content

Commit 73d7a36

Browse files
authored
Dependencies (#67)
* Update NPM dependencies * Update Composer dependencies * Remove `predis/predis` in favour of phpredis * Update `tightenco/ziggy` to v2 * Fix code style * Update php.yml * Update ResetPasswordControllerTest.php
1 parent 54468bb commit 73d7a36

File tree

9 files changed

+592
-580
lines changed

9 files changed

+592
-580
lines changed

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ MEMCACHED_HOST=127.0.0.1
4141
REDIS_HOST=127.0.0.1
4242
REDIS_PASSWORD=null
4343
REDIS_PORT=6379
44-
REDIS_CLIENT=predis
44+
REDIS_CLIENT=phpredis
4545

4646
MAIL_MAILER=log
4747
MAIL_HOST=127.0.0.1

.github/workflows/php.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: shivammathur/setup-php@v2
2121
if: steps.cache-vendor.outputs.cache-hit != 'true'
2222
with:
23-
php-version: 8.3
23+
php-version: 8.2
2424
tools: composer:v2
2525

2626
- name: Install Composer dependencies
@@ -44,7 +44,7 @@ jobs:
4444

4545
- uses: shivammathur/setup-php@v2
4646
with:
47-
php-version: 8.3
47+
php-version: 8.2
4848
tools: composer:v2
4949

5050
- name: Build
@@ -73,7 +73,7 @@ jobs:
7373

7474
- uses: shivammathur/setup-php@v2
7575
with:
76-
php-version: 8.3
76+
php-version: 8.2
7777
tools: composer:v2
7878

7979
- name: Build

bun.lockb

9.59 KB
Binary file not shown.

composer.json

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,30 +4,29 @@
44
"description": "A starter project for Laravel apps using Inertia and Vue.",
55
"license": "MIT",
66
"require": {
7-
"php": "^8.3",
7+
"php": "^8.2",
88
"althinect/filament-spatie-roles-permissions": "^2.2",
99
"filament/filament": "^3.2",
10-
"inertiajs/inertia-laravel": "^1.2",
11-
"laravel/framework": "^11.10",
12-
"laravel/horizon": "^5.24",
10+
"inertiajs/inertia-laravel": "^1.3",
11+
"laravel/framework": "^11.17",
12+
"laravel/horizon": "^5.26",
1313
"laravel/pulse": "^1.2",
1414
"laravel/sanctum": "^4.0",
1515
"laravel/tinker": "^2.9",
16-
"predis/predis": "^2.2",
17-
"sentry/sentry-laravel": "^4.5",
18-
"spatie/laravel-permission": "^6.7",
19-
"tightenco/ziggy": "^1.8"
16+
"sentry/sentry-laravel": "^4.7",
17+
"spatie/laravel-permission": "^6.9",
18+
"tightenco/ziggy": "^2.3"
2019
},
2120
"require-dev": {
2221
"barryvdh/laravel-debugbar": "^3.13",
2322
"fakerphp/faker": "^1.23",
24-
"laravel/pint": "^1.16",
23+
"laravel/pint": "^1.17",
2524
"mockery/mockery": "^1.6",
26-
"nunomaduro/collision": "^8.1",
25+
"nunomaduro/collision": "^8.3",
2726
"pestphp/pest": "^2.34",
2827
"pestphp/pest-plugin-faker": "^2.0",
2928
"pestphp/pest-plugin-laravel": "^2.4",
30-
"spatie/laravel-ray": "^1.36"
29+
"spatie/laravel-ray": "^1.37"
3130
},
3231
"autoload": {
3332
"psr-4": {

0 commit comments

Comments
 (0)