I'm trying to get the following json object:
{
"Customers":[
{
"name": "Jason",
"country": "USA"
}
]
}
This is my current code :
$data = [
'Customers' => [
'name' => "Jason",
'country' => "USA"
]
];
but it doesn't give me the good result:
{"Customers": {"name": "Jason", "country": "USA"}}
Any idea please ?