dept-eduk/json-ld-schema-generator

There is no license information available for the latest version (2.0.0) of this package.

Installs: 4

Dependents: 0

Suggesters: 0

Security: 0

pkg:composer/dept-eduk/json-ld-schema-generator

2.0.0 2019-10-31 10:09 UTC

This package is not auto-updated.

Last update: 2025-09-27 12:43:59 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',
        ])
    ])
]);