Skip to content

Commit 532ae6a

Browse files
authored
Merge pull request #15 from Kemito/master
Fixed test input & added symfony 4.0 dependency
2 parents 725b9c9 + d704156 commit 532ae6a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
}],
1515
"require": {
1616
"php": ">=5.3.2",
17-
"symfony/http-foundation": "~2.0|~3.0"
17+
"symfony/http-foundation": "~2.0|~3.0|~4.0"
1818
},
1919
"require-dev": {
2020
"sami/sami": "^3.3",

tests/DataTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public function testBuildFromFile()
121121

122122
public function testBuildFromUrl()
123123
{
124-
$url = 'http://www.alchemy.fr/images/header_03.png';
124+
$url = 'http://via.placeholder.com/350x150';
125125
$dataURI = DataURI\Data::buildFromUrl($url);
126126
$this->assertInstanceOf('DataURI\Data', $dataURI);
127127
$this->assertEquals('image/png', $dataURI->getMimeType());

0 commit comments

Comments
 (0)