Skip to content

Commit 117dc33

Browse files
authored
remove support to Laravel 6 (#17)
1 parent 346b8cf commit 117dc33

File tree

2 files changed

+6
-38
lines changed

2 files changed

+6
-38
lines changed

.github/workflows/tests.yml

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -36,35 +36,3 @@ jobs:
3636
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
3737
- name: Execute tests
3838
run: vendor/bin/phpunit
39-
40-
run-tests-l6:
41-
runs-on: ubuntu-latest
42-
strategy:
43-
fail-fast: false
44-
matrix:
45-
php: [7.4, 8.0]
46-
laravel: [6.*]
47-
dependency-version: [prefer-stable]
48-
include:
49-
- laravel: 6.*
50-
testbench: 4.*
51-
52-
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
53-
54-
steps:
55-
- name: Checkout code
56-
uses: actions/checkout@v2
57-
58-
- name: Setup PHP
59-
uses: shivammathur/setup-php@v2
60-
with:
61-
php-version: ${{ matrix.php }}
62-
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, exif
63-
coverage: none
64-
65-
- name: Install dependencies
66-
run: |
67-
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
68-
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
69-
- name: Execute tests
70-
run: vendor/bin/phpunit

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
"type": "library",
1414
"require": {
1515
"php": "^7.4|^8.0",
16-
"illuminate/console": "^6.0|^8.0|^9.0",
17-
"illuminate/database": "^6.0|^8.0|^9.0",
18-
"illuminate/events": "^6.0|^8.0|^9.0",
19-
"illuminate/support": "^6.0|^8.0|^9.0"
16+
"illuminate/console": "^8.0|^9.0",
17+
"illuminate/database": "^8.0|^9.0",
18+
"illuminate/events": "^8.0|^9.0",
19+
"illuminate/support": "^8.0|^9.0"
2020
},
2121
"require-dev": {
22-
"phpunit/phpunit": "^8.0|^9.0",
23-
"orchestra/testbench": "^4.0|^6.0|^7.0",
22+
"phpunit/phpunit": "^9.0",
23+
"orchestra/testbench": "^6.0|^7.0",
2424
"laravel/legacy-factories": "^1.0.4"
2525
},
2626
"autoload": {

0 commit comments

Comments
 (0)