-
-
Notifications
You must be signed in to change notification settings - Fork 390
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1102 from nicolas-grekas/php-8
Allow PHP 8
- Loading branch information
Showing
225 changed files
with
1,874 additions
and
1,079 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
|
||
name: "Backward Compatibility Check" | ||
#name: "Backward Compatibility Check" | ||
|
||
on: | ||
pull_request: | ||
#on: | ||
# pull_request: | ||
|
||
jobs: | ||
roave_bc_check: | ||
name: "Roave BC Check" | ||
runs-on: "ubuntu-20.04" | ||
steps: | ||
- uses: "actions/checkout@v2" | ||
with: | ||
fetch-depth: 0 | ||
#jobs: | ||
# roave_bc_check: | ||
# name: "Roave BC Check" | ||
# runs-on: "ubuntu-20.04" | ||
# steps: | ||
# - uses: "actions/checkout@v2" | ||
# with: | ||
# fetch-depth: 0 | ||
|
||
- name: "Roave BC Check" | ||
uses: "docker://nyholm/roave-bc-check-ga" | ||
with: | ||
args: "--from=${{ github.event.pull_request.base.sha }}" | ||
# - name: "Roave BC Check" | ||
# uses: "docker://nyholm/roave-bc-check-ga" | ||
# with: | ||
# args: "--from=${{ github.event.pull_request.base.sha }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,7 @@ jobs: | |
- "7.2" | ||
- "7.3" | ||
- "7.4" | ||
- "8.0" | ||
deps: | ||
- "normal" | ||
include: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,23 +11,23 @@ | |
{"name": "Michael Simonson", "email": "[email protected]" } | ||
], | ||
"require": { | ||
"php": "^7.1", | ||
"php": "^7.1 || ^8.0", | ||
"composer/package-versions-deprecated": "^1.8", | ||
"doctrine/dbal": "^2.9", | ||
"ocramius/proxy-manager": "^2.0.2", | ||
"friendsofphp/proxy-manager-lts": "^1.0", | ||
"symfony/console": "^3.4||^4.4.16||^5.0", | ||
"symfony/stopwatch": "^3.4||^4.0||^5.0" | ||
}, | ||
"require-dev": { | ||
"ext-pdo_sqlite": "*", | ||
"doctrine/coding-standard": "^6.0", | ||
"doctrine/coding-standard": "^8.2", | ||
"doctrine/orm": "^2.6", | ||
"jdorn/sql-formatter": "^1.1", | ||
"mikey179/vfsstream": "^1.6", | ||
"phpstan/phpstan": "^0.10", | ||
"phpstan/phpstan-deprecation-rules": "^0.10", | ||
"phpstan/phpstan-phpunit": "^0.10", | ||
"phpstan/phpstan-strict-rules": "^0.10", | ||
"phpstan/phpstan": "^0.12", | ||
"phpstan/phpstan-deprecation-rules": "^0.12", | ||
"phpstan/phpstan-phpunit": "^0.12", | ||
"phpstan/phpstan-strict-rules": "^0.12", | ||
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.4", | ||
"symfony/process": "^3.4||^4.0||^5.0", | ||
"symfony/yaml": "^3.4||^4.0||^5.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/usr/bin/env bash | ||
|
||
if [ ! -f box.phar ]; then | ||
wget https://github.com/box-project/box/releases/download/3.9.0/box.phar -O box.phar | ||
wget https://github.com/box-project/box/releases/download/$(php -r 'echo PHP_VERSION_ID >= 70300 ? "3.11.0" : "3.9.1";')/box.phar -O box.phar | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.