Skip to content
Open
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
*.log
/node_modules
/public/hot
!/public/build
Expand Down
18 changes: 4 additions & 14 deletions app/Console/Commands/Update.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,15 @@

namespace App\Console\Commands;

use Illuminate\Console\Attributes\Description;
use Illuminate\Console\Attributes\Signature;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\Artisan;

#[Signature('app:update')]
#[Description('Update the application')]
class Update extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'app:update';

/**
* The console command description.
*
* @var string
*/
protected $description = 'Update the application';

/**
* Execute the console command.
*/
Expand Down
36 changes: 18 additions & 18 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,36 +10,36 @@
"require": {
"php": "^8.4",
"barryvdh/laravel-dompdf": "^3.1",
"cyrildewit/eloquent-viewable": "^7.0",
"filament/filament": "^3.3",
"cyrildewit/eloquent-viewable": "dev-feature/laravel-13-support",
"filament/filament": "^4.0",
"filament/spatie-laravel-tags-plugin": "^3.3",
"graham-campbell/markdown": "^16.0",
"graham-campbell/markdown": "^16.1",
"kilobyteno/laravel-user-guest-like": "^1.4.0",
"laravel/framework": "^12.48",
"laravel/jetstream": "^5.3",
"laravel/nightwatch": "^1.22",
"laravel/sanctum": "^4.0",
"laravel/tinker": "^2.10.1",
"laravel/framework": "^13.0",
"laravel/jetstream": "^5.5",
"laravel/nightwatch": "^1.24",
"laravel/sanctum": "^4.3",
"laravel/tinker": "^3.0",
"livewire/livewire": "^3.5",
"mtownsend/read-time": "^2.0",
"romanzipp/laravel-seo": "^2.9",
"sentry/sentry-laravel": "^4.13",
"spatie/laravel-honeypot": "^4.5",
"spatie/laravel-permission": "^6.12",
"spatie/laravel-tags": "^4.9",
"sentry/sentry-laravel": "^4.22",
"spatie/laravel-honeypot": "^4.7",
"spatie/laravel-permission": "^7.2",
"spatie/laravel-tags": "^4.11",
"torchlight/torchlight-commonmark": "^0.6.0"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.15",
"barryvdh/laravel-debugbar": "^4.0",
"fakerphp/faker": "^1.23",
"laravel/boost": "^2.3",
"laravel/pail": "^1.2.2",
"laravel/pint": "^1.13",
"laravel/sail": "^1.41",
"laravel/pail": "^1.2.5",
"laravel/pint": "^1.27",
"laravel/sail": "^1.53",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.6",
"pestphp/pest": "^3.0",
"pestphp/pest-plugin-laravel": "^3.1",
"pestphp/pest": "^4.0",
"pestphp/pest-plugin-laravel": "^4.1",
"spatie/boost-spatie-guidelines": "^1.1"
},
"autoload": {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration
{
public function up()
{
Schema::table('cache', function (Blueprint $table) {
$table->index('expiration');
});

Schema::table('cache_locks', function (Blueprint $table) {
$table->index('expiration');
});
}

public function down()
{
Schema::table('cache', function (Blueprint $table) {
$table->dropIndex(['expiration']);
});

Schema::table('cache_locks', function (Blueprint $table) {
$table->dropIndex(['expiration']);
});
}
};
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,6 @@
"resolutions": {
"node-forge": "^1.0.0"
},
"type": "module"
"type": "module",
"$schema": "https://www.schemastore.org/package.json"
}
7 changes: 2 additions & 5 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd" bootstrap="vendor/autoload.php" colors="true">
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
Expand All @@ -29,6 +25,7 @@
<env name="SESSION_DRIVER" value="array"/>
<env name="TELESCOPE_ENABLED" value="false"/>
<env name="NIGHTWATCH_ENABLED" value="false"/>
<env name="PULSE_ENABLED" value="false"/>
</php>
<logging>
<log type="coverage-clover" target="clover.xml"/>
Expand Down
5 changes: 5 additions & 0 deletions vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,9 @@ export default defineConfig({
refresh: true,
}),
],
server: {
watch: {
ignored: ['**/storage/framework/views/**'],
},
},
});
Loading