-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
34 lines (29 loc) · 692 Bytes
/
Makefile
File metadata and controls
34 lines (29 loc) · 692 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
.DEFAULT_GOAL := check
check:
composer audit
./vendor/bin/phpstan analyse
vendor/bin/rector --dry-run
./vendor/bin/pint --test
./vendor/bin/pest
update: clear
@echo "Current Laravel Version"
php artisan --version
@echo "\nUpdating..."
composer update
php artisan filament:upgrade
@echo "UPDATED Laravel Version"
php artisan --version
php artisan boost:update
npm update
clear_all: clear
rm -f .idea/httpRequests/*
rm -fr storage/app/backup/*
clear:
@echo "Clearing..."
php artisan config:clear
php artisan route:clear
php artisan view:clear
php artisan filament:optimize-clear
fake_data:
php artisan migrate:fresh --seed
php artisan db:seed --class FakeDataSeeder