dept-eduk / json-ld-schema-generator
There is no license information available for the latest version (2.0.0) of this package.
2.0.0
2019-10-31 10:09 UTC
This package is not auto-updated.
Last update: 2025-04-12 10:33:41 UTC
README
Generates valid JSON-LD schema from data
Usage
echo new EventSchema([
'name' => 'Birthday Party',
'startDate' => '2018-09-09',
'location' => new PlaceSchema([
'name' => 'Pizza Hut',
'address' => new PostalAddressSchema([
'postalCode' => 'SY2 8RU',
])
])
]);