json-schema/json-schema-test-suite
Lightweight placeholder Composer package for testing. Contains minimal README content and no documented functionality yet; likely intended as a stub or harness for experiments around json-schema/json-schema-test-suite.
Do not use this package — it is a placeholder/stub with no functional code. Despite the misleading name (json-schema/json-schema-test-suite), the repository at https://github.com/SnelleJelle/composertest contains only a minimal README.md and description.md both stating "test", and a composer.json referencing unrelated dependencies (e.g., horde/imap-client). There are no test runners, schema definitions, or validation logic. For actual JSON Schema test suite execution in Laravel, begin with the official JSON-Schema-Test-Suite and integrate via justinrainbow/json-schema.
No patterns apply — this package has zero implementation surface. You cannot:
phpunitInstead, to validate JSON schemas in Laravel:
justinrainbow/json-schematests/Feature/SchemaValidationTest.php) that load schema and test cases:
$schema = json_decode(file_get_contents('tests/fixtures/user.schema.json'), true);
$data = json_decode(file_get_contents('tests/fixtures/valid-user.json'), true);
$validator = new JsonSchema\Validator();
$validator->validate($data, $schema);
$this->assertTrue($validator->isValid());
composer.lock.justinrainbow/json-schema)salsify/json-schema-test-suite-runner)How can I help you explore Laravel packages today?