1
0
Fork 0

Fix indent detection in json files when an empty line starts the object

pull/3982/head
Jordi Boggiano 2015-04-29 22:42:57 +01:00
parent 32a479a1e7
commit fa398e14c7
2 changed files with 23 additions and 1 deletions

View File

@ -358,7 +358,7 @@ class JsonManipulator
protected function detectIndenting()
{
if ($this->pregMatch('{^(\s+)"}m', $this->contents, $match)) {
if ($this->pregMatch('{^([ \t]+)"}m', $this->contents, $match)) {
$this->indent = $match[1];
} else {
$this->indent = ' ';

View File

@ -1112,6 +1112,28 @@ class JsonManipulatorTest extends \PHPUnit_Framework_TestCase
"foo": "qux"
}
}
', $manipulator->getContents());
}
public function testIndentDetection()
{
$manipulator = new JsonManipulator('{
"require": {
"php": "5.*"
}
}');
$this->assertTrue($manipulator->addMainKey('require-dev', array('foo' => 'qux')));
$this->assertEquals('{
"require": {
"php": "5.*"
},
"require-dev": {
"foo": "qux"
}
}
', $manipulator->getContents());
}
}