8000 Merge branch '6.4' into 7.0 · symfony/symfony@7ea560f · GitHub
[go: up one dir, main page]

Skip to content

Commit 7ea560f

Browse files
committed
Merge branch '6.4' into 7.0
* 6.4: synchronize require-dev and conflict sections [AssetMapper] Normalizing path in test to fix / \ comparison in Windows
2 parents 268aae5 + 790f6f5 commit 7ea560f

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

src/Symfony/Bundle/FrameworkBundle/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@
9090
"symfony/mime": "<6.4",
9191
"symfony/property-info": "<6.4",
9292
"symfony/property-access": "<6.4",
93+
"symfony/scheduler": "<6.4",
9394
"symfony/serializer": "<6.4",
9495
"symfony/security-csrf": "<6.4",
9596
"symfony/security-core": "<6.4",

src/Symfony/Bundle/SecurityBundle/composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,11 @@
6262
"symfony/browser-kit": "<6.4",
6363
"symfony/console": "<6.4",
6464
"symfony/framework-bundle": "<6.4",
65+
"symfony/http-client": "<6.4",
6566
"symfony/ldap": "<6.4",
66-
"symfony/twig-bundle": "<6.4"
67+
"symfony/serializer": "<6.4",
68+
"symfony/twig-bundle": "<6.4",
69+
"symfony/validator": "<6.4"
6770
},
6871
"autoload": {
6972
"psr-4": { "Symfony\\Bundle\\SecurityBundle\\": "" },

src/Symfony/Component/AssetMapper/Tests/CompiledAssetMapperConfigReaderTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public function testLoadConfig()
5454
public function testSaveConfig()
5555
{
5656
$reader = new CompiledAssetMapperConfigReader($this->writableRoot);
57-
$this->assertEquals($this->writableRoot.'/foo.json', $reader->saveConfig('foo.json', ['foo' => 'bar']));
57+
$this->assertEquals($this->writableRoot.\DIRECTORY_SEPARATOR.'foo.json', realpath($reader->saveConfig('foo.json', ['foo' => 'bar'])));
5858
$this->assertEquals(['foo' => 'bar'], json_decode(file_get_contents($this->writableRoot.'/foo.json'), true));
5959
}
6060

0 commit comments

Comments
 (0)
0