json.php in Zircon Profile 8
Same filename in this branch
Same filename and directory in other branches
File
vendor/behat/mink/driver-testsuite/web-fixtures/json.phpView source
<?php
echo json_encode(array(
'key1' => 'val1',
'key2' => 234,
'key3' => array(
1,
2,
3,
),
));