Skip to content

Commit e5ad1e6

Browse files
sync laravel
1 parent e1b54d3 commit e5ad1e6

File tree

10 files changed

+145
-356
lines changed

10 files changed

+145
-356
lines changed

.env.example

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ APP_FALLBACK_LOCALE=en
1010
APP_FAKER_LOCALE=en_US
1111

1212
APP_MAINTENANCE_DRIVER=file
13-
APP_MAINTENANCE_STORE=database
13+
# APP_MAINTENANCE_STORE=database
14+
15+
PHP_CLI_SERVER_WORKERS=4
1416

1517
BCRYPT_ROUNDS=12
1618

@@ -19,12 +21,12 @@ LOG_STACK=single
1921
LOG_DEPRECATIONS_CHANNEL=null
2022
LOG_LEVEL=debug
2123

22-
DB_CONNECTION=mysql
23-
DB_HOST=127.0.0.1
24-
DB_PORT=3306
25-
DB_DATABASE=laravel_skeleton
26-
DB_USERNAME=root
27-
DB_PASSWORD=
24+
DB_CONNECTION=sqlite
25+
# DB_HOST=127.0.0.1
26+
# DB_PORT=3306
27+
# DB_DATABASE=laravel
28+
# DB_USERNAME=root
29+
# DB_PASSWORD=
2830

2931
SESSION_DRIVER=database
3032
SESSION_LIFETIME=120

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
/public/storage
66
/public/coverage
77
/storage/*.key
8+
/storage/pail
89
/vendor
910
.env
1011
.env.backup
@@ -18,4 +19,6 @@ npm-debug.log
1819
yarn-error.log
1920
/.fleet
2021
/.idea
22+
/.nova
2123
/.vscode
24+
/.zed

composer.json

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,21 @@
1010
"require": {
1111
"php": "^8.2",
1212
"filament/filament": "^3.2",
13-
"laravel/framework": "^11.0",
14-
"laravel/tinker": "^2.9"
13+
"laravel/framework": "^11.32",
14+
"laravel/tinker": "^2.10"
1515
},
1616
"require-dev": {
1717
"barryvdh/laravel-debugbar": "^3.13",
1818
"barryvdh/laravel-ide-helper": "^3.0",
1919
"driftingly/rector-laravel": "^1.2",
2020
"fakerphp/faker": "^1.23",
2121
"larastan/larastan": "^2.9",
22+
"laravel/pail": "^1.2",
2223
"laravel/pint": "^1.13",
2324
"laravel/sail": "^1.26",
2425
"mockery/mockery": "^1.6",
25-
"nunomaduro/collision": "^8.0",
26-
"phpunit/phpunit": "^11.0.1",
27-
"spatie/laravel-ignition": "^2.4"
26+
"nunomaduro/collision": "^8.4",
27+
"phpunit/phpunit": "^11.0.1"
2828
},
2929
"autoload": {
3030
"psr-4": {
@@ -62,6 +62,9 @@
6262
"php artisan ide-helper:models --write --reset",
6363
"./vendor/bin/rector",
6464
"./vendor/bin/pint"
65+
],
66+
"latest": [
67+
"composer show --no-dev --direct --name-only | xargs composer require"
6568
]
6669
},
6770
"extra": {

0 commit comments

Comments
 (0)