Skip to content

Commit

Permalink
Merge pull request #53 from codedge/#52-support-current-php
Browse files Browse the repository at this point in the history
Support till php 7.3
  • Loading branch information
codedge authored Apr 5, 2019
2 parents 3f2f920 + 8074641 commit 4390455
Show file tree
Hide file tree
Showing 5 changed files with 4,656 additions and 14 deletions.
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

0 comments on commit 4390455

Please sign in to comment.