Skip to content

Commit 3dae448

Browse files
Added Automatic Updater
The newest update of LittleLink Custom introduces automatic updater. This updater allows users to update their installation with one click. Gone are the days of having to download the update files and placing them into your web directory by hand. Read more: https://littlelink-custom.com/blog/last-update
2 parents 1cd29d3 + 35d59f0 commit 3dae448

38 files changed

+2630
-150
lines changed

.htaccess

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,7 @@ Deny from all
2929
Order allow,deny
3030
Deny from all
3131
</Files>
32+
<Files ~ "\.zip$">
33+
Order allow,deny
34+
Deny from all
35+
</Files>

composer.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@
66
"license": "GPL-3.0-or-later",
77
"require": {
88
"php": "^7.3|^8.0",
9+
"codedge/laravel-selfupdater": "^3.4",
910
"fideloper/proxy": "^4.4",
1011
"fruitcake/laravel-cors": "^2.0",
1112
"geo-sot/laravel-env-editor": "^1.1",
1213
"guzzlehttp/guzzle": "^7.4",
1314
"laravel/framework": "^8.12",
14-
"laravel/tinker": "^2.5"
15+
"laravel/tinker": "^2.5",
16+
"spatie/laravel-backup": "^6.16"
1517
},
1618
"require-dev": {
1719
"facade/ignition": "^2.5",
@@ -54,7 +56,10 @@
5456
"config": {
5557
"optimize-autoloader": true,
5658
"preferred-install": "dist",
57-
"sort-packages": true
59+
"sort-packages": true,
60+
"allow-plugins": {
61+
"phpstan/extension-installer": true
62+
}
5863
},
5964
"minimum-stability": "dev",
6065
"prefer-stable": true

0 commit comments

Comments
 (0)