PHP code example of mrsuh / json-validation-bundle
1. Go to this page and download the library: Download mrsuh/json-validation-bundle library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
mrsuh / json-validation-bundle example snippets
use Mrsuh\JsonValidationBundle\Annotation\ValidateJsonRequest;
use Mrsuh\JsonValidationBundle\Annotation\ValidateJsonResponse;
use Symfony\Component\HttpFoundation\JsonResponse;
class MyController
{
/**
* @ValidateJsonRequest("JsonSchema/Request/myAction.json", methods={"POST"}, emptyIsValid=true)
* @ValidateJsonResponse("JsonSchema/Response/myAction.json", statuses={"200"}, emptyIsValid=true)
*/
public function myAction(array $validJson): JsonResponse
{
return new JsonResponse($validJson);
}
}
use Mrsuh\JsonValidationBundle\JsonValidator\JsonValidator;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
class MyController
{
public function myAction(Request $request, JsonValidator $validator): Response
{
$validator->validate($request->getContent(), 'JsonSchema/Request/myAction.json');
$errors = $validator->getErrors();
if(!empty($errors)) {
// do something with errors
}
return new Response();
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.