Skip to content

Support till php 7.3 #53

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 5, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
build
composer.lock
vendor
vendor
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
language: php

php:
- 7.0
- 7.1
- 7.2
- 7.3

branches:
except:
Expand All @@ -15,4 +16,4 @@ script:
- vendor/bin/phpunit --verbose --coverage-text --coverage-clover=coverage.xml

after_success:
- bash <(curl -s https://codecov.io/bash)
- bash <(curl -s https://codecov.io/bash)
9 changes: 2 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
[![Build Status](https://travis-ci.org/codedge/laravel-selfupdater.svg?branch=master)](https://travis-ci.org/codedge/laravel-selfupdater)
[![StyleCI](https://styleci.io/repos/64463948/shield)](https://styleci.io/repos/64463948)
[![codecov](https://codecov.io/gh/codedge/laravel-selfupdater/branch/master/graph/badge.svg)](https://codecov.io/gh/codedge/laravel-selfupdater)
[![composer.lock](https://poser.pugx.org/codedge/laravel-selfupdater/composerlock?format=flat-square)](https://packagist.org/packages/codedge/laravel-selfupdater)

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

## Install with Composer

There are currently two branches:
* `master`: Compatible with PHP 7.x
* `5.x`: Compatible with PHP 5.5 + 5.6

_Please select the right branch for your PHP version accordingly._

To install the latest version from the master using [Composer](https://getcomposer.org/):
```sh
$ composer require codedge/laravel-selfupdater
Expand Down Expand Up @@ -225,4 +220,4 @@ Please see the [contributing guide](CONTRIBUTING.md).
Just a quickly sketched [roadmap](https://github.com/codedge/laravel-selfupdater/wiki/Roadmap) what still needs to be implemented.

## Licence
The MIT License (MIT). Please see [Licencse file](LICENSE) for more information.
The MIT License (MIT). Please see [Licence file](LICENSE) for more information.
9 changes: 6 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,18 @@
"Codedge\\Updater\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"require": {
"php": ">=7.0",
"php": ">=7.1",
"ext-zip": "*",
"illuminate/support": "5.*",
"guzzlehttp/guzzle": "6.*"
},
"require-dev": {
"phpunit/phpunit": "^5.5",
"orchestra/testbench": "3.2.*",
"phpunit/phpunit": "^7",
"orchestra/testbench": "3.7.*",
"mockery/mockery": "^0.9.5"
}
}
Loading