Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
test:
uses: zenstruck/.github/.github/workflows/php-test-symfony.yml@main
uses: nikophil/.github-1/.github/workflows/php-test-symfony.yml@chore/sf-8
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


code-coverage:
uses: zenstruck/.github/.github/workflows/php-coverage-codecov.yml@main
Expand Down
30 changes: 20 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
],
"require": {
"php": ">=8.0",
"behat/mink": "^1.8",
"symfony/browser-kit": "^5.4|^6.0|^7.0",
"symfony/css-selector": "^5.4|^6.0|^7.0",
"symfony/dom-crawler": "^5.4|^6.0|^7.0",
"symfony/framework-bundle": "^5.4|^6.0|^7.0",
"behat/mink": "^1.8|dev-chore/allow-sf-8",
"symfony/browser-kit": "^5.4|^6.0|^7.0|^8.0",
"symfony/css-selector": "^5.4|^6.0|^7.0|^8.0",
"symfony/dom-crawler": "^5.4|^6.0|^7.0|^8.0",
"symfony/framework-bundle": "^5.4|^6.0|^7.0|^8.0",
"zenstruck/assert": "^1.1",
"zenstruck/callback": "^1.4.2"
},
Expand All @@ -27,15 +27,25 @@
"mtdowling/jmespath.php": "^2.6",
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9.6.21|^10.4",
"symfony/mime": "^5.4|^6.0|^7.0",
"symfony/panther": "^1.1|^2.0.1",
"symfony/phpunit-bridge": "^6.0|^7.0",
"symfony/security-bundle": "^5.4|^6.0|^7.0"
"symfony/mime": "^5.4|^6.0|^7.0|^8.0",
"symfony/panther": "^1.1|^2.0.1|dev-symfony-8-support",
"symfony/phpunit-bridge": "^6.0|^7.0|^8.0",
"symfony/security-bundle": "^5.4|^6.0|^7.0|^8.0"
},
"suggest": {
"justinrainbow/json-schema": "Json schema validator. Needed to use Json::assertMatchesSchema().",
"mtdowling/jmespath.php": "PHP implementation for JMESPath. Needed to use Json assertions."
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/nikophil/Mink"
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

},
{
"type": "vcs",
"url": "https://github.com/Kocal/symfony-panther"
}
],
"config": {
"preferred-install": "dist",
"sort-packages": true
Expand All @@ -46,6 +56,6 @@
"autoload-dev": {
"psr-4": { "Zenstruck\\Browser\\Tests\\": "tests/" }
},
"minimum-stability": "dev",
"minimum-stability": "beta",
"prefer-stable": true
}
Loading