Skip to content

Commit 6a9579f

Browse files
Support for Laravel 5.4
1 parent f68c9a2 commit 6a9579f

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
build
12
composer.lock
23
vendor
34
.idea/

.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@ php:
77
- 7.0
88
- 7.1
99

10-
## Cache composer bits
11-
cache:
12-
directories:
10+
cache:
11+
directories:
1312
- $HOME/.composer/cache
1413

1514
before_script:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111

1212
To install this package you will need:
1313

14-
- Laravel 5.*
15-
- PHP 5.5.9+
14+
- Laravel >= 5.3
15+
- PHP 5.6.4+
1616

1717

1818
Run this command to install via composer
@@ -25,7 +25,7 @@ or edit the `composer.json`
2525

2626
```
2727
"require": {
28-
"linkstreet/laravel-sms": "^1.0.0"
28+
"linkstreet/laravel-sms": "^2.0"
2929
}
3030
```
3131

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,18 @@
2020
}
2121
],
2222
"require": {
23-
"php": ">=5.5.9",
24-
"illuminate/support": "^5.1",
25-
"guzzlehttp/guzzle": "~5.3|~6.0"
23+
"php": ">=5.6.4",
24+
"illuminate/support": "~5.3|~5.4",
25+
"guzzlehttp/guzzle": "~6.0"
2626
},
2727
"autoload": {
2828
"psr-4": {
2929
"Linkstreet\\LaravelSms\\": "src"
3030
}
3131
},
3232
"require-dev": {
33-
"orchestra/testbench": "^3.2",
34-
"phpunit/phpunit": "~4.0|~5.0"
33+
"orchestra/testbench": "~3.3",
34+
"phpunit/phpunit": "~5.0"
3535
},
3636
"autoload-dev": {
3737
"psr-4": {

0 commit comments

Comments
 (0)