Skip to content

Commit

Permalink
update skeleton
Browse files Browse the repository at this point in the history
  • Loading branch information
jrmajor committed Dec 5, 2024
1 parent 2846238 commit 46fabba
Show file tree
Hide file tree
Showing 8 changed files with 97 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
/public/hot
/public/storage
/storage/*.key
/storage/pail
/vendor
/.env
/.env.backup
Expand Down
4 changes: 2 additions & 2 deletions app/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class Application extends BaseApplication
{
public const string SkeletonVersion = '11.1.3';
public const string SkeletonVersion = '11.3.3';

public const string BreezeVersion = '2.1.2';
public const string BreezeVersion = '2.2.6';
}
2 changes: 2 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"$schema": "https://getcomposer.org/schema.json",
"name": "jrmajor/bajki-muza",
"description": "",
"license": "MIT",
Expand Down Expand Up @@ -38,6 +39,7 @@
"fakerphp/faker": "^1.24",
"jrmajor/cs": "^0.6.1",
"larastan/larastan": "^3.0",
"laravel/pail": "^1.2",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.5",
"php-standard-library/phpstan-extension": "^2.0",
Expand Down
84 changes: 81 additions & 3 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions config/database.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
'database' => env('DB_DATABASE', database_path('database.sqlite')),
'prefix' => '',
'foreign_key_constraints' => true,
'busy_timeout' => null,
'journal_mode' => null,
'synchronous' => null,
],

'testing' => [
Expand All @@ -20,6 +23,9 @@
'database' => env('DB_DATABASE', database_path('testing.sqlite')),
'prefix' => '',
'foreign_key_constraints' => true,
'busy_timeout' => null,
'journal_mode' => null,
'synchronous' => null,
],

],
Expand Down
3 changes: 2 additions & 1 deletion config/filesystems.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@

'local' => [
'driver' => 'local',
'root' => storage_path('app'),
'root' => storage_path('app/private'),
'serve' => true,
'throw' => true,
],

Expand Down
1 change: 1 addition & 0 deletions storage/app/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
*
!private/
!public/
!.gitignore
2 changes: 2 additions & 0 deletions storage/app/private/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*
!.gitignore

0 comments on commit 46fabba

Please sign in to comment.