Skip to content

Commit d5be0eb

Browse files
committed
Larvel 7 support
1 parent 8be228a commit d5be0eb

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,22 @@ php:
44
- 7.1
55
- 7.2
66
- 7.3
7+
- 7.4
78

89
env:
910
- ILLUMINATE_VERSION=5.6.* PHPUNIT_VERSION=~7.0 TESTBENCH_VERSION=3.6
1011
- ILLUMINATE_VERSION=5.7.* PHPUNIT_VERSION=~7.0 TESTBENCH_VERSION=3.7
1112
- ILLUMINATE_VERSION=5.8.* PHPUNIT_VERSION=~7.0 TESTBENCH_VERSION=3.8
1213
- ILLUMINATE_VERSION=^6.0 PHPUNIT_VERSION=~8.0 TESTBENCH_VERSION=^4.0
14+
- ILLUMINATE_VERSION=^7.0 PHPUNIT_VERSION=~8.0 TESTBENCH_VERSION=^5.0
1315

1416
matrix:
1517
fast_finish: true
1618
exclude:
1719
- php: 7.1
1820
env: ILLUMINATE_VERSION=^6.0 PHPUNIT_VERSION=~8.0 TESTBENCH_VERSION=^4.0
21+
- php: 7.1
22+
env: ILLUMINATE_VERSION=^7.0 PHPUNIT_VERSION=~8.0 TESTBENCH_VERSION=^5.0
1923

2024
before_install:
2125
- composer require "illuminate/support:${ILLUMINATE_VERSION}" --no-update --prefer-dist

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
"homepage": "https://github.com/vedmant/laravel-shortcodes",
1313
"keywords": ["Laravel", "Shortcodes"],
1414
"require": {
15-
"php": "^7.0.0",
16-
"illuminate/contracts": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0",
17-
"illuminate/view": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0",
18-
"illuminate/support": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0"
15+
"php": ">=7.0.0",
16+
"illuminate/contracts": ">=5.5.0",
17+
"illuminate/view": ">=5.5.0",
18+
"illuminate/support": ">=5.5.0"
1919
},
2020
"require-dev": {
2121
"phpunit/phpunit": "^8",

readme.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,6 @@ Via Composer
3434
$ composer require vedmant/laravel-shortcodes
3535
```
3636

37-
This package supports [Laravel Auto-Discovery](https://laravel.com/docs/master/packages#package-discovery) and will be discovered automatically.
38-
39-
For Laravel versions prior to 5.5 please add `Vedmant\LaravelShortcodes\LaravelShortcodesServiceProvider::class` to the providers array in `config/app.php`
40-
and `'Shortcodes' => Vedmant\LaravelShortcodes\Facades\Shortcodes::class` to the aliases array.
41-
42-
4337
## Configuraton
4438

4539
Publish configuration.

0 commit comments

Comments
 (0)