Skip to content

Commit

Permalink
Merge pull request #8 from answear/support-symfony6
Browse files Browse the repository at this point in the history
Support Symfony6
  • Loading branch information
lukasz-falda authored Aug 18, 2022
2 parents 6e5798c + a5ed78e commit 8074913
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:
strategy:
matrix:
php-version:
- "7.3"
- "7.4"
- "8.0"
- "8.1"
deps:
- "normal"
include:
- deps: "low"
php-version: "7.3"
php-version: "7.4"

steps:
- name: "Checkout"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
php-version:
- "7.4"
- "8.0"
- "8.1"

steps:
- name: "Checkout"
Expand Down
21 changes: 12 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@
"type": "symfony-bundle",
"license": "MIT",
"require": {
"php": ">=7.3",
"php": ">=7.4|^8.0",
"ext-soap": "*",
"marc-mabe/php-enum": "^3.0|^4.0",
"symfony/http-kernel": "^4.4 || ^5.0",
"symfony/http-kernel": "^5.4|^6.0",
"webmozart/assert": "^1.3"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^8.3",
"symfony/phpunit-bridge": "^5.0",
"phpro/grumphp": "^1.4.0",
"friendsofphp/php-cs-fixer": "^2.19",
"phpstan/phpstan": "^0.12.32",
"phpstan/phpstan-webmozart-assert": "^0.12.2"
"phpunit/phpunit": "^9.5",
"symfony/phpunit-bridge": "6.1.*",
"phpro/grumphp": "^1.5.0",
"friendsofphp/php-cs-fixer": "^3.4",
"phpstan/phpstan": "^1.4",
"phpstan/phpstan-webmozart-assert": "^1.0"
},
"autoload": {
"psr-4": {
Expand All @@ -43,6 +43,9 @@
}
},
"config": {
"sort-packages": true
"sort-packages": true,
"allow-plugins": {
"phpro/grumphp": true
}
}
}

0 comments on commit 8074913

Please sign in to comment.