Skip to content

Commit 49ce61b

Browse files
committed
WIP
1 parent 2961d7b commit 49ce61b

File tree

3 files changed

+2150
-1400
lines changed

3 files changed

+2150
-1400
lines changed

app/Models/DocumentationSection.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@
1010

1111
class DocumentationSection extends Model
1212
{
13-
use HasFactory;
14-
use HasUuids;
15-
use Searchable;
13+
use HasFactory, HasUuids, Searchable;
1614

1715
/**
1816
* The attributes that are mass assignable.

composer.json

Lines changed: 19 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -17,42 +17,42 @@
1717
],
1818
"license": "CC BY-NC-SA 4.0",
1919
"require": {
20-
"php": ">=8.1",
21-
"cagilo/cagilo": "^3.2",
22-
"doctrine/dbal": "^3.7",
23-
"esplora/spire": "0.0.1",
20+
"php": "^8.2",
21+
"ext-dom": "*",
22+
"assisted-mindfulness/naive-bayes": "0.0.3",
23+
"cagilo/cagilo": "^3.3",
24+
"esplora/spire": "0.0.2",
2425
"guzzlehttp/guzzle": "^7.2",
25-
"hotwired-laravel/turbo-laravel": "^1.12",
26+
"hotwired-laravel/turbo-laravel": "2.0.0-beta4",
2627
"intervention/image": "^3.4",
2728
"jolicode/jolitypo": "^1.4",
28-
"laravel-notification-channels/telegram": "^4.0",
29-
"laravel-notification-channels/webpush": "^7.1",
30-
"laravel/framework": "^10.31",
31-
"laravel/sanctum": "^3.2",
32-
"laravel/scout": "^10.8",
29+
"laravel-notification-channels/telegram": "^5.0",
30+
"laravel-notification-channels/webpush": "^8.0",
31+
"laravel/framework": "^11.0",
32+
"laravel/sanctum": "^4.0",
33+
"laravel/scout": "^10.5",
3334
"laravel/socialite": "^5.9",
34-
"laravel/telescope": "^4.17",
35+
"laravel/telescope": "^5.0",
3536
"laravel/tinker": "^2.8",
3637
"orchid/platform": "^14.17",
3738
"overtrue/laravel-like": "^5.2",
3839
"spatie/laravel-activitylog": "^4.7",
3940
"spatie/laravel-backup": "^8.6",
40-
"spatie/once": "^3.1",
4141
"symfony/dom-crawler": "^7.0",
4242
"symfony/yaml": "^7.0",
4343
"twbs/bootstrap-icons": "^1.11",
4444
"watson/active": "^7.0"
4545
},
4646
"require-dev": {
47-
"deployer/deployer": "^7.3",
4847
"fakerphp/faker": "^1.9.1",
4948
"laravel/envoy": "^2.9",
5049
"laravel/pint": "^1.0",
5150
"laravel/sail": "^1.18",
5251
"mockery/mockery": "^1.4.4",
53-
"nunomaduro/collision": "^7.0",
54-
"phpunit/phpunit": "^10.1",
55-
"spatie/laravel-ignition": "^2.0"
52+
"nunomaduro/collision": "^8.1",
53+
"phpunit/phpunit": "^10.0",
54+
"spatie/laravel-ignition": "^2.0",
55+
"vimeo/psalm": "^5.23"
5656
},
5757
"autoload": {
5858
"psr-4": {
@@ -78,7 +78,9 @@
7878
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
7979
],
8080
"post-create-project-cmd": [
81-
"@php artisan key:generate --ansi"
81+
"@php artisan key:generate --ansi",
82+
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
83+
"@php artisan migrate --graceful --ansi"
8284
]
8385
},
8486
"extra": {

0 commit comments

Comments
 (0)