Skip to content

Commit 04dd39b

Browse files
authored
Merge pull request #185 from caugner/drop-laravel-7-support
Drop support for Laravel 7
2 parents c032e4e + d475892 commit 04dd39b

File tree

3 files changed

+10
-35
lines changed

3 files changed

+10
-35
lines changed

composer.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
"require": {
66
"php": "^7.3|^8",
77
"ext-simplexml": "*",
8-
"illuminate/config": "^6.0 || ^7.0 || ^8.0",
9-
"illuminate/container": "^6.0 || ^7.0 || ^8.0",
10-
"illuminate/contracts": "^6.0 || ^7.0 || ^8.0",
11-
"illuminate/database": "^6.0 || ^7.0 || ^8.0",
12-
"illuminate/events": "^6.0 || ^7.0 || ^8.0",
13-
"illuminate/http": "^6.0 || ^7.0 || ^8.0",
14-
"illuminate/routing": "^6.0 || ^7.0 || ^8.0",
15-
"illuminate/support": "^6.0 || ^7.0 || ^8.0",
16-
"illuminate/view": "^6.0 || ^7.0 || ^8.0",
8+
"illuminate/config": "^6.0 || ^8.0",
9+
"illuminate/container": "^6.0 || ^8.0",
10+
"illuminate/contracts": "^6.0 || ^8.0",
11+
"illuminate/database": "^6.0 || ^8.0",
12+
"illuminate/events": "^6.0 || ^8.0",
13+
"illuminate/http": "^6.0 || ^8.0",
14+
"illuminate/routing": "^6.0 || ^8.0",
15+
"illuminate/support": "^6.0 || ^8.0",
16+
"illuminate/view": "^6.0 || ^8.0",
1717
"vimeo/psalm": "^4.8.1",
1818
"orchestra/testbench": "^3.8 || ^4.0 || ^5.0 || ^6.0",
1919
"barryvdh/laravel-ide-helper": ">=2.8.0 <2.9.2"

stubs/7/helpers.stubphp

Lines changed: 0 additions & 25 deletions
This file was deleted.

tests/acceptance/FactoryTypes.feature

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Feature: factory()
2525
"""
2626

2727
Scenario: can use factory helper in Laravel 6.x and 7.x
28-
Given I have the "laravel/framework" package satisfying the "6.* || 7.*"
28+
Given I have the "laravel/framework" package satisfying the "6.*"
2929
And I have the following code
3030
"""
3131
class FactoryTest {

0 commit comments

Comments
 (0)