Skip to content

Commit 08cff55

Browse files
committed
chore: support Symfony 8
1 parent ff0152e commit 08cff55

File tree

2 files changed

+16
-10
lines changed

2 files changed

+16
-10
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
test:
11-
uses: zenstruck/.github/.github/workflows/php-test-symfony.yml@main
11+
uses: nikophil/.github-1/.github/workflows/php-test-symfony.yml@chore/sf-8
1212

1313
code-coverage:
1414
uses: zenstruck/.github/.github/workflows/php-coverage-codecov.yml@main

composer.json

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
],
1414
"require": {
1515
"php": ">=8.0",
16-
"behat/mink": "^1.8",
17-
"symfony/browser-kit": "^5.4|^6.0|^7.0",
18-
"symfony/css-selector": "^5.4|^6.0|^7.0",
19-
"symfony/dom-crawler": "^5.4|^6.0|^7.0",
20-
"symfony/framework-bundle": "^5.4|^6.0|^7.0",
16+
"behat/mink": "dev-chore/allow-sf-8",
17+
"symfony/browser-kit": "^5.4|^6.0|^7.0|^8.0",
18+
"symfony/css-selector": "^5.4|^6.0|^7.0|^8.0",
19+
"symfony/dom-crawler": "^5.4|^6.0|^7.0|^8.0",
20+
"symfony/framework-bundle": "^5.4|^6.0|^7.0|^8.0",
2121
"zenstruck/assert": "^1.1",
2222
"zenstruck/callback": "^1.4.2"
2323
},
@@ -27,15 +27,21 @@
2727
"mtdowling/jmespath.php": "^2.6",
2828
"phpstan/phpstan": "^1.4",
2929
"phpunit/phpunit": "^9.6.21|^10.4",
30-
"symfony/mime": "^5.4|^6.0|^7.0",
30+
"symfony/mime": "^5.4|^6.0|^7.0|^8.0",
3131
"symfony/panther": "^1.1|^2.0.1",
32-
"symfony/phpunit-bridge": "^6.0|^7.0",
33-
"symfony/security-bundle": "^5.4|^6.0|^7.0"
32+
"symfony/phpunit-bridge": "^6.0|^7.0|^8.0",
33+
"symfony/security-bundle": "^5.4|^6.0|^7.0|^8.0"
3434
},
3535
"suggest": {
3636
"justinrainbow/json-schema": "Json schema validator. Needed to use Json::assertMatchesSchema().",
3737
"mtdowling/jmespath.php": "PHP implementation for JMESPath. Needed to use Json assertions."
3838
},
39+
"repositories": [
40+
{
41+
"type": "vcs",
42+
"url": "https://github.com/nikophil/Mink"
43+
}
44+
],
3945
"config": {
4046
"preferred-install": "dist",
4147
"sort-packages": true
@@ -46,6 +52,6 @@
4652
"autoload-dev": {
4753
"psr-4": { "Zenstruck\\Browser\\Tests\\": "tests/" }
4854
},
49-
"minimum-stability": "dev",
55+
"minimum-stability": "beta",
5056
"prefer-stable": true
5157
}

0 commit comments

Comments
 (0)