Skip to content

Commit

Permalink
Merge pull request #60 from madewithlove/symfony-6
Browse files Browse the repository at this point in the history
Allow Symfony v6 for our dependencies
  • Loading branch information
jdrieghe authored Jan 3, 2022
2 parents ac77fa7 + 21c6122 commit 9e7eb8b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
11 changes: 8 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"type": "package",
"require": {
"php": "^8.0",
"symfony/console": "^3.0 || ^4.0 || ^5.0",
"symfony/console": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"http-interop/http-factory-guzzle": "^1.0",
"php-http/guzzle7-adapter": "^1.0",
"madewithlove/htaccess-api-client": "^2.1",
"symfony/yaml": "^3.0 || ^4.0 || ^5.0"
"madewithlove/htaccess-api-client": "^2.3",
"symfony/yaml": "^3.0 || ^4.0 || ^5.0 || ^6.0"
},
"bin": [
"bin/htaccess"
Expand All @@ -23,5 +23,10 @@
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.0.0"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}
2 changes: 1 addition & 1 deletion tests/HtaccessCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public function it is possible to share a test run(): void
]);

$this->assertStringContainsString(
'You can share this test run on https://htaccess.madewithlove.be?share=',
'You can share this test run on https://htaccess.madewithlove.com?share=',
$commandTester->getDisplay()
);
}
Expand Down

0 comments on commit 9e7eb8b

Please sign in to comment.