Skip to content

Commit 4390455

Browse files
authored
Merge pull request #53 from codedge/#52-support-current-php
Support till php 7.3
2 parents 3f2f920 + 8074641 commit 4390455

File tree

5 files changed

+4656
-14
lines changed

5 files changed

+4656
-14
lines changed

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
build
2-
composer.lock
3-
vendor
2+
vendor

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
language: php
22

33
php:
4-
- 7.0
54
- 7.1
5+
- 7.2
6+
- 7.3
67

78
branches:
89
except:
@@ -15,4 +16,4 @@ script:
1516
- vendor/bin/phpunit --verbose --coverage-text --coverage-clover=coverage.xml
1617

1718
after_success:
18-
- bash <(curl -s https://codecov.io/bash)
19+
- bash <(curl -s https://codecov.io/bash)

README.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
[![Build Status](https://travis-ci.org/codedge/laravel-selfupdater.svg?branch=master)](https://travis-ci.org/codedge/laravel-selfupdater)
66
[![StyleCI](https://styleci.io/repos/64463948/shield)](https://styleci.io/repos/64463948)
77
[![codecov](https://codecov.io/gh/codedge/laravel-selfupdater/branch/master/graph/badge.svg)](https://codecov.io/gh/codedge/laravel-selfupdater)
8+
[![composer.lock](https://poser.pugx.org/codedge/laravel-selfupdater/composerlock?format=flat-square)](https://packagist.org/packages/codedge/laravel-selfupdater)
89

910
This package provides some basic methods to implement a self updating
1011
functionality for your Laravel 5 application. Already bundled are some
@@ -16,12 +17,6 @@ lovely users with Git and/or Composer commands ;-)
1617

1718
## Install with Composer
1819

19-
There are currently two branches:
20-
* `master`: Compatible with PHP 7.x
21-
* `5.x`: Compatible with PHP 5.5 + 5.6
22-
23-
_Please select the right branch for your PHP version accordingly._
24-
2520
To install the latest version from the master using [Composer](https://getcomposer.org/):
2621
```sh
2722
$ composer require codedge/laravel-selfupdater
@@ -225,4 +220,4 @@ Please see the [contributing guide](CONTRIBUTING.md).
225220
Just a quickly sketched [roadmap](https://github.com/codedge/laravel-selfupdater/wiki/Roadmap) what still needs to be implemented.
226221

227222
## Licence
228-
The MIT License (MIT). Please see [Licencse file](LICENSE) for more information.
223+
The MIT License (MIT). Please see [Licence file](LICENSE) for more information.

composer.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,18 @@
3434
"Codedge\\Updater\\Tests\\": "tests/"
3535
}
3636
},
37+
"config": {
38+
"sort-packages": true
39+
},
3740
"require": {
38-
"php": ">=7.0",
41+
"php": ">=7.1",
3942
"ext-zip": "*",
4043
"illuminate/support": "5.*",
4144
"guzzlehttp/guzzle": "6.*"
4245
},
4346
"require-dev": {
44-
"phpunit/phpunit": "^5.5",
45-
"orchestra/testbench": "3.2.*",
47+
"phpunit/phpunit": "^7",
48+
"orchestra/testbench": "3.7.*",
4649
"mockery/mockery": "^0.9.5"
4750
}
4851
}

0 commit comments

Comments
 (0)