Skip to content

Commit

Permalink
Merge pull request #792 from Lctrs/feature/drop-php7
Browse files Browse the repository at this point in the history
feat: drop PHP 7 support
  • Loading branch information
Lctrs committed Dec 6, 2022
2 parents 63283cc + eecadba commit a41d24e
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 22 deletions.
6 changes: 0 additions & 6 deletions .github/settings.yml
Expand Up @@ -19,12 +19,6 @@ branches:
- context: "Dependency Analysis (8.1, locked)"
- context: "Mutation Tests (8.1, locked)"
- context: "Static Code Analysis (8.1, locked)"
- context: "Tests (7.3, highest)"
- context: "Tests (7.3, locked)"
- context: "Tests (7.3, lowest)"
- context: "Tests (7.4, highest)"
- context: "Tests (7.4, locked)"
- context: "Tests (7.4, lowest)"
- context: "Tests (8.0, highest)"
- context: "Tests (8.0, locked)"
- context: "Tests (8.0, lowest)"
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/integrate.yaml
Expand Up @@ -170,8 +170,6 @@ jobs:
strategy:
matrix:
php-version:
- "7.3"
- "7.4"
- "8.0"
- "8.1"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/renew.yaml
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
php-version:
- "7.4"
- "8.1"

dependencies:
- "locked"
Expand Down
7 changes: 6 additions & 1 deletion .tools/composer-require-checker/composer.json
@@ -1,6 +1,11 @@
{
"require": {
"php": "^7.4.0 || ^8.0.0",
"php": "^8.0.0",
"maglnet/composer-require-checker": "3.8.0"
},
"config": {
"platform": {
"php": "8.0.0"
}
}
}
9 changes: 6 additions & 3 deletions .tools/composer-require-checker/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion .tools/infection/composer.json
@@ -1,11 +1,14 @@
{
"require": {
"php": "^7.4.7 || ^8.0.0",
"php": "^8.0.0",
"infection/infection": "0.26.6"
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
},
"platform": {
"php": "8.0.0"
}
}
}
9 changes: 6 additions & 3 deletions .tools/infection/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions composer.json
Expand Up @@ -15,7 +15,7 @@
"source": "https://github.com/Lctrs/php-library-skeleton"
},
"require": {
"php": "^7.3.0 || ~8.0.0 || ~8.1.0"
"php": "~8.0.0 || ~8.1.0"
},
"require-dev": {
"doctrine/coding-standard": "10.0.0",
Expand Down Expand Up @@ -48,7 +48,7 @@
"phpstan/extension-installer": true
},
"platform": {
"php": "7.3.0"
"php": "8.0.0"
},
"preferred-install": "dist",
"sort-packages": true
Expand Down
6 changes: 3 additions & 3 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a41d24e

Please sign in to comment.