@@ -18,13 +18,8 @@ lovely users with Git and/or Composer commands ;-)
18
18
19
19
## Compatibility
20
20
21
- * PHP:
22
- * 7.2
23
- * 7.3
24
- * 7.4
25
- * Laravel:
26
- * 5.8
27
- * 6.x
21
+ * PHP: 7.3 & 7.4
22
+ * Laravel: 6.x & 7.x
28
23
29
24
## Install with Composer
30
25
@@ -37,36 +32,12 @@ This adds the _codedge/laravel-selfupdater_ package to your `composer.json` and
37
32
38
33
## Register the package
39
34
40
- Since Laravel 5.5 auto-discovery can be used to register packages - this is supported by this package.
41
- So if you run Laravel >=5.5 the steps ` [1] ` and ` [2] ` are not needed.
42
-
43
- You need to include the service provider in your ` config/app.php ` ` [1] ` and optionally the _ facade_ ` [2] ` :
44
- ``` php
45
- // config/app.php
46
-
47
- return [
48
-
49
- //...
50
-
51
- 'providers' => [
52
- // ...
53
-
54
- Codedge\Updater\UpdaterServiceProvider::class, // [1]
55
- ],
56
-
57
- // ...
58
-
59
- 'aliases' => [
60
- // ...
61
-
62
- 'Updater' => Codedge\Updater\UpdaterFacade::class, // [2]
63
-
64
- ]
65
- ```
35
+ The package is auto-registered.
66
36
67
37
Additionally add the listener to your ` app/Providers/EventServiceProvider.php ` ` [3] ` :
68
38
69
39
``` php
40
+ <?php
70
41
// app/Providers/EventServiceProvider.php
71
42
72
43
/**
@@ -90,9 +61,9 @@ protected $listen = [
90
61
91
62
## Configuration
92
63
After installing the package you need to publish the configuration file via
93
- ``` sh
94
- $ php artisan vendor:publish --provider=" Codedge\Updater\UpdaterServiceProvider"
95
- ```
64
+ ``` sh
65
+ $ php artisan vendor:publish --provider=" Codedge\Updater\UpdaterServiceProvider"
66
+ ```
96
67
97
68
** Note:** Please enter correct value for vendor and repository name in your ` config/self-updater.php ` if you want to
98
69
use Github as source for your updates.
@@ -169,7 +140,7 @@ Route::get('/', function (\Codedge\Updater\UpdaterManager $updater) {
169
140
** IMPORTANT** :
170
141
You're responsible to set the current version installed, either in the config file or better via the env variable ` SELF_UPDATER_VERSION_INSTALLED ` .
171
142
172
- Currently the fetching of the source is a _ synchronous_ process.
143
+ Currently, the fetching of the source is a _ synchronous_ process.
173
144
It is not run in background.
174
145
175
146
### Using Github
0 commit comments