Skip to content
This repository was archived by the owner on Aug 1, 2021. It is now read-only.

Commit b7fc31e

Browse files
committed
require PHP 7.4
1 parent 43f4a9a commit b7fc31e

File tree

6 files changed

+10
-48
lines changed

6 files changed

+10
-48
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 4 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -57,57 +57,23 @@ jobs:
5757

5858
runs-on: "${{ matrix.operating-system }}"
5959

60-
continue-on-error: ${{ matrix.continue-on-error }}
60+
continue-on-error: false
6161

6262
strategy:
6363
fail-fast: false
6464

6565
matrix:
6666
operating-system:
6767
- "ubuntu-latest"
68-
- "windows-latest"
69-
- "macos-latest"
7068

7169
php-version:
72-
- "7.1"
73-
- "7.2"
74-
- "7.3"
7570
- "7.4"
7671
- "8.0"
7772

7873
dependencies:
7974
- "--prefer-lowest"
8075
- ""
8176

82-
continue-on-error:
83-
- false
84-
85-
include:
86-
- operating-system: "ubuntu-latest"
87-
php-version: "8.1"
88-
dependencies: "--prefer-lowest"
89-
continue-on-error: true
90-
- operating-system: "ubuntu-latest"
91-
php-version: "8.1"
92-
dependencies: ""
93-
continue-on-error: true
94-
- operating-system: "windows-latest"
95-
dependencies: "--prefer-lowest"
96-
php-version: "8.1"
97-
continue-on-error: true
98-
- operating-system: "windows-latest"
99-
dependencies: ""
100-
php-version: "8.1"
101-
continue-on-error: true
102-
- operating-system: "macos-latest"
103-
dependencies: "--prefer-lowest"
104-
php-version: "8.1"
105-
continue-on-error: true
106-
- operating-system: "macos-latest"
107-
dependencies: ""
108-
php-version: "8.1"
109-
continue-on-error: true
110-
11177
steps:
11278
- name: "Checkout"
11379
uses: "actions/[email protected]"
@@ -155,7 +121,7 @@ jobs:
155121
- "ubuntu-latest"
156122

157123
php-version:
158-
- "7.1"
124+
- "7.4"
159125

160126
dependencies:
161127
- ""
@@ -207,7 +173,7 @@ jobs:
207173
- "ubuntu-latest"
208174

209175
php-version:
210-
- "7.1"
176+
- "7.4"
211177

212178
dependencies:
213179
- ""
@@ -260,7 +226,7 @@ jobs:
260226
- "ubuntu-latest"
261227

262228
php-version:
263-
- "7.1"
229+
- "7.4"
264230

265231
dependencies:
266232
- ""

.php_cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* This file is part of the browser-detector-loader-interface package.
44
*
5-
* Copyright (c) 2015-2020, Thomas Mueller <[email protected]>
5+
* Copyright (c) 2015-2021, Thomas Mueller <[email protected]>
66
*
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
@@ -12,7 +12,7 @@ declare(strict_types = 1);
1212
$header = <<<'EOF'
1313
This file is part of the browser-detector-loader-interface package.
1414
15-
Copyright (c) 2015-2020, Thomas Mueller <[email protected]>
15+
Copyright (c) 2015-2021, Thomas Mueller <[email protected]>
1616
1717
For the full copyright and license information, please view the LICENSE
1818
file that was distributed with this source code.

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
## Code Status
88

9-
[![Build Status](https://travis-ci.org/mimmi20/browser-detector-loader-interface.svg?branch=master)](https://travis-ci.org/mimmi20/browser-detector-loader-interface)
109
[![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/mimmi20/browser-detector-loader-interface.svg)](http://isitmaintained.com/project/mimmi20/browser-detector-loader-interface "Average time to resolve an issue")
1110
[![Percentage of issues still open](http://isitmaintained.com/badge/open/mimmi20/browser-detector-loader-interface.svg)](http://isitmaintained.com/project/mimmi20/browser-detector-loader-interface "Percentage of issues still open")
1211

composer.json

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,16 @@
1515
}
1616
],
1717
"require": {
18-
"php": "^7.1.3 || ^8.0.0"
18+
"php": "^7.4.0 || ^8.0.0"
1919
},
2020
"require-dev": {
21-
"mimmi20/coding-standard": "^1.0.10",
21+
"mimmi20/coding-standard": "^2.0.1",
2222
"pepakriz/phpstan-exception-rules": "^0.11.6",
2323
"phpstan/extension-installer": "^1.1.0",
2424
"phpstan/phpstan": "^0.12.80",
2525
"phpstan/phpstan-deprecation-rules": "^0.12.6"
2626
},
2727
"config": {
28-
"platform": {
29-
"php": "7.1.3"
30-
},
3128
"preferred-install": "dist",
3229
"sort-packages": true
3330
},

src/LoaderInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* This file is part of the browser-detector-loader-interface package.
44
*
5-
* Copyright (c) 2015-2020, Thomas Mueller <[email protected]>
5+
* Copyright (c) 2015-2021, Thomas Mueller <[email protected]>
66
*
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.

src/NotFoundException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* This file is part of the browser-detector-loader-interface package.
44
*
5-
* Copyright (c) 2015-2020, Thomas Mueller <[email protected]>
5+
* Copyright (c) 2015-2021, Thomas Mueller <[email protected]>
66
*
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.

0 commit comments

Comments
 (0)