Skip to content

Commit

Permalink
Fix: Bring back support for PHP 7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Dec 19, 2019
1 parent 92410e1 commit 1e47761
Show file tree
Hide file tree
Showing 5 changed files with 585 additions and 652 deletions.
5 changes: 4 additions & 1 deletion .github/settings.yml
Expand Up @@ -10,9 +10,12 @@ branches:
required_approving_review_count: 1
required_status_checks:
contexts:
- "Coding Standards (7.2)"
- "Coding Standards (7.1)"
- "Dependency Analysis (7.4)"
- "Static Code Analysis (7.4)"
- "Tests (7.1, lowest)"
- "Tests (7.1, locked)"
- "Tests (7.1, highest)"
- "Tests (7.2, lowest)"
- "Tests (7.2, locked)"
- "Tests (7.2, highest)"
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/continuous-integration.yml
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
matrix:
php-version:
- 7.2
- 7.1

steps:
- name: "Checkout"
Expand Down Expand Up @@ -141,6 +141,7 @@ jobs:
strategy:
matrix:
php-version:
- 7.1
- 7.2
- 7.3
- 7.4
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Expand Up @@ -11,20 +11,20 @@
}
],
"require": {
"php": "^7.2",
"php": "^7.1",
"friendsofphp/php-cs-fixer": "~2.16.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.0.0",
"ergebnis/phpstan-rules": "~0.14.0",
"ergebnis/test-util": "~0.9.0",
"infection/infection": "~0.14.2",
"ergebnis/composer-normalize": "^1.3.1",
"ergebnis/phpstan-rules": "~0.13.0",
"ergebnis/test-util": "~0.9.1",
"infection/infection": "~0.13.6",
"jangregor/phpstan-prophecy": "~0.4.2",
"phpstan/extension-installer": "^1.0.3",
"phpstan/phpstan": "~0.11.19",
"phpstan/phpstan-deprecation-rules": "~0.11.2",
"phpstan/phpstan-strict-rules": "~0.11.1",
"phpunit/phpunit": "^8.4.3"
"phpunit/phpunit": "^7.5.18"
},
"config": {
"preferred-install": "dist",
Expand Down

0 comments on commit 1e47761

Please sign in to comment.