Skip to content

Commit 429f594

Browse files
authored
Merge pull request #90 from codedge/drop-php72-add-laravel-7
Drop php72 add laravel 7
2 parents 0d7d4eb + 1b7a9e6 commit 429f594

File tree

3 files changed

+11
-40
lines changed

3 files changed

+11
-40
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
strategy:
77
matrix:
88
operating-system: [ubuntu-latest]
9-
php-versions: ['7.2', '7.3', '7.4']
9+
php-versions: ['7.3', '7.4']
1010
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
1111
steps:
1212
- uses: actions/checkout@v1

README.md

+8-37
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,8 @@ lovely users with Git and/or Composer commands ;-)
1818

1919
## Compatibility
2020

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
2823

2924
## Install with Composer
3025

@@ -37,36 +32,12 @@ This adds the _codedge/laravel-selfupdater_ package to your `composer.json` and
3732

3833
## Register the package
3934

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.
6636

6737
Additionally add the listener to your `app/Providers/EventServiceProvider.php` `[3]`:
6838

6939
```php
40+
<?php
7041
// app/Providers/EventServiceProvider.php
7142

7243
/**
@@ -90,9 +61,9 @@ protected $listen = [
9061

9162
## Configuration
9263
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+
```
9667

9768
**Note:** Please enter correct value for vendor and repository name in your `config/self-updater.php` if you want to
9869
use Github as source for your updates.
@@ -169,7 +140,7 @@ Route::get('/', function (\Codedge\Updater\UpdaterManager $updater) {
169140
**IMPORTANT**:
170141
You're responsible to set the current version installed, either in the config file or better via the env variable `SELF_UPDATER_VERSION_INSTALLED`.
171142

172-
Currently the fetching of the source is a _synchronous_ process.
143+
Currently, the fetching of the source is a _synchronous_ process.
173144
It is not run in background.
174145

175146
### Using Github

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@
4848
}
4949
},
5050
"require": {
51-
"php": ">=7.2",
51+
"php": ">=7.3",
5252
"ext-json": "*",
5353
"ext-zip": "*",
54-
"laravel/framework": "^5.8|6.*",
54+
"laravel/framework": "^6.0|^7.0",
5555
"guzzlehttp/guzzle": "6.*"
5656
},
5757
"require-dev": {

0 commit comments

Comments
 (0)