Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:

jobs:
build:
runs-on: ubuntu-16.04
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
run: composer test

coding-standard:
runs-on: ubuntu-16.04
runs-on: ubuntu-20.04
name: Coding Standard
steps:
- name: "Checkout"
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
run: composer check-cs

benchmark:
runs-on: ubuntu-16.04
runs-on: ubuntu-20.04
name: Benchmark
steps:
- name: "Checkout"
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
run: composer bench

static-analysis:
runs-on: ubuntu-16.04
runs-on: ubuntu-20.04
name: "Static analysis"
steps:
- name: "Checkout"
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
run: composer static-analysis

coverage:
runs-on: ubuntu-16.04
runs-on: ubuntu-20.04
name: "Coverage"
steps:
- name: "Checkout"
Expand Down
30 changes: 15 additions & 15 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@
"require": {
"php": ">=5.6",
"psr/log": "^1.0",
"symfony/config": "^3.1 || ^4.0 || ^5.0",
"symfony/dependency-injection": "^3.1 || ^4.0 || ^5.0",
"symfony/event-dispatcher": "^3.1 || ^4.0 || ^5.0",
"symfony/expression-language": "^3.1 || ^4.0 || ^5.0",
"symfony/framework-bundle": "^3.1 || ^4.0 || ^5.0",
"symfony/options-resolver": "^3.1 || ^4.0 || ^5.0",
"symfony/property-access": "^3.1 || ^4.0 || ^5.0",
"symfony/config": "3.1 - 5.2",
"symfony/dependency-injection": "3.1 - 5.2",
"symfony/event-dispatcher": "3.1 - 5.2",
"symfony/expression-language": "3.1 - 5.2",
"symfony/framework-bundle": "3.1 - 5.2",
"symfony/options-resolver": "3.1 - 5.2",
"symfony/property-access": "3.1 - 5.2",
"webonyx/graphql-php": "^0.11.2 || ^0.12.0 || ^0.13.0"
},
"replace": {
Expand All @@ -50,14 +50,14 @@
"require-dev": {
"phpunit/phpunit": "^5.7.26 || ^6.0 || ^7.2",
"react/promise": "^2.5",
"symfony/asset": "^3.1 || ^4.0 || ^5.0",
"symfony/browser-kit": "^3.1 || ^4.0 || ^5.0",
"symfony/console": "^3.1 || ^4.0 || ^5.0",
"symfony/css-selector": "^3.1 || ^4.0 || ^5.0",
"symfony/phpunit-bridge": "^3.1 || ^4.0 || ^5.0",
"symfony/process": "^3.1 || ^4.0 || ^5.0",
"symfony/security-bundle": "^3.1 || ^4.0 || ^5.0",
"symfony/yaml": "^3.1 || ^4.0 || ^5.0"
"symfony/asset": "3.1 - 5.2",
"symfony/browser-kit": "3.1 - 5.2",
"symfony/console": "3.1 - 5.2",
"symfony/css-selector": "3.1 - 5.2",
"symfony/phpunit-bridge": "3.1 - 5.2",
"symfony/process": "3.1 - 5.2",
"symfony/security-bundle": "3.1 - 5.2",
"symfony/yaml": "3.1 - 5.2"
},
"extra": {
"branch-alias": {
Expand Down