Skip to content

Commit 0dbb040

Browse files
ronaldvaneedehiddeco
authored andcommitted
Laravel 5.5 support (#9)
* Laravel 5.5 support * Updated .travis.yml
1 parent 2637647 commit 0dbb040

File tree

3 files changed

+21
-7
lines changed

3 files changed

+21
-7
lines changed

.travis.yml

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

33
php:
4-
- 5.6
54
- 7.0
6-
- hhvm
5+
- 7.1
76

87
sudo: false
98

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## 5.5 - 2017-09-27
5+
- Added Laravel 5.5 support, including Package Auto-Discovery
6+
- `hiddeco/transip` version update `v5.3` -> `v5.5`
7+
- `graham-campbell/manager` version update `v2.4` -> `v3.0`
8+
49
## 5.4 - 2017-05-29
510
- Added Laravel 5.4 support
611
- `hiddeco/transip` version update `v5.3` -> `v5.4`

composer.json

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
}
2121
},
2222
"require": {
23-
"illuminate/contracts": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*",
24-
"illuminate/support": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*",
25-
"graham-campbell/manager": "~2.4",
26-
"hiddeco/transip": "~5.4"
23+
"illuminate/contracts": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*",
24+
"illuminate/support": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*",
25+
"graham-campbell/manager": "~3.0",
26+
"hiddeco/transip": "~5.5"
2727
},
2828
"require-dev": {
2929
"graham-campbell/testbench": "~3.0",
@@ -42,5 +42,15 @@
4242
"test": "phpunit"
4343
},
4444
"minimum-stability": "dev",
45-
"prefer-stable": true
45+
"prefer-stable": true,
46+
"extra": {
47+
"laravel": {
48+
"providers": [
49+
"TransIP\\Laravel\\TransIPServiceProvider"
50+
],
51+
"aliases": {
52+
"TransIP": "TransIP\\Laravel\\Facades\\TransIP"
53+
}
54+
}
55+
}
4656
}

0 commit comments

Comments
 (0)