Skip to content

Update dependencies, improve compatibility with PHP 8.4 #56

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 8 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,24 @@
"php": "^8.2",
"barryvdh/laravel-dompdf": "^3.0",
"guzzlehttp/guzzle": "^7.9",
"laravel/framework": "^11.31",
"laravel/framework": "^11.36",
"laravel/sanctum": "^4.0",
"laravel/tinker": "^2.10",
"livewire/livewire": "^3.5",
"phpoffice/phpspreadsheet": "^3.4",
"portavice/bladestrap": "^1.3",
"spatie/laravel-query-builder": "^6.2",
"spatie/laravel-sluggable": "^3.6"
"phpoffice/phpspreadsheet": "^3.6",
"portavice/bladestrap": "^1.4",
"spatie/laravel-query-builder": "^6.3",
"spatie/laravel-sluggable": "^3.7"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.14",
"fakerphp/faker": "^1.24",
"kkomelin/laravel-translatable-string-exporter": "^1.21",
"laravel/sail": "^1.38",
"kkomelin/laravel-translatable-string-exporter": "^1.22",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.5",
"phpunit/phpunit": "^11.4",
"phpunit/phpunit": "^11.5",
"portavice/laravel-pint-config": "^2.0",
"spatie/laravel-ignition": "^2.8"
"spatie/laravel-ignition": "^2.9"
},
"autoload": {
"files": [
Expand Down
1,184 changes: 644 additions & 540 deletions composer.lock

Large diffs are not rendered by default.

927 changes: 559 additions & 368 deletions package-lock.json

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@
"production": "mix --production"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@fortawesome/fontawesome-free": "^6.6.0",
"alpinejs": "^3.14.3",
"@eslint/js": "^9.17.0",
"@fortawesome/fontawesome-free": "^6.7.2",
"alpinejs": "^3.14.8",
"bootstrap": "^5.3.3",
"eslint": "^9.14.0",
"eslint": "^9.17.0",
"fs-extra": "^11.2.0",
"laravel-mix": "^6.0.49",
"laravel-mix-make-file-hash": "^2.2.0",
"resolve-url-loader": "^5.0.0",
"sass": "^1.80.7",
"sass-loader": "^16.0.3",
"stylelint": "^16.10.0",
"sass": "^1.83.0",
"sass-loader": "^16.0.4",
"stylelint": "^16.12.0",
"stylelint-config-recommended-scss": "^14.1.0"
},
"stylelint": {
Expand Down
6 changes: 3 additions & 3 deletions tests/Feature/CacheTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ public function testEventCache(): void

public function testRouteCache(): void
{
$result = Artisan::call('route:cache');
Artisan::call('route:clear');

$result = Artisan::call('route:cache');
$this->assertEquals(Command::SUCCESS, $result);
$this->assertFileExists(base_path('bootstrap/cache/routes-v7.php'));
Artisan::call('route:clear');

$result = Artisan::call('route:cache');
Artisan::call('route:clear');
}

public function testViewCache(): void
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/Http/Api/AccountApiTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Http\Api;
namespace Tests\Feature\Http\Api;

use App\Models\PersonalAccessToken;
use App\Models\User;
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/Livewire/Users/SearchUsersTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Livewire\Users;
namespace Tests\Feature\Livewire\Users;

use App\Livewire\Users\SearchUsers;
use App\Models\User;
Expand Down
Loading