├── LICENSE.md ├── README.md ├── composer.json └── src ├── ArgumentResolver └── RequestDtoArgumentResolver.php ├── DependencyInjection └── RequestDtoExtension.php ├── Dto └── RequestDtoInterface.php ├── EventListener └── RequestValidationExceptionListener.php ├── Exception └── RequestValidationException.php ├── RequestDtoBundle.php ├── Resources └── config │ └── services.yaml └── Serializer └── Normalizer └── CustomNormalizer.php /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prugala/symfony-request-dto/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prugala/symfony-request-dto/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prugala/symfony-request-dto/HEAD/composer.json -------------------------------------------------------------------------------- /src/ArgumentResolver/RequestDtoArgumentResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prugala/symfony-request-dto/HEAD/src/ArgumentResolver/RequestDtoArgumentResolver.php -------------------------------------------------------------------------------- /src/DependencyInjection/RequestDtoExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prugala/symfony-request-dto/HEAD/src/DependencyInjection/RequestDtoExtension.php -------------------------------------------------------------------------------- /src/Dto/RequestDtoInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prugala/symfony-request-dto/HEAD/src/Dto/RequestDtoInterface.php -------------------------------------------------------------------------------- /src/EventListener/RequestValidationExceptionListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prugala/symfony-request-dto/HEAD/src/EventListener/RequestValidationExceptionListener.php -------------------------------------------------------------------------------- /src/Exception/RequestValidationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prugala/symfony-request-dto/HEAD/src/Exception/RequestValidationException.php -------------------------------------------------------------------------------- /src/RequestDtoBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prugala/symfony-request-dto/HEAD/src/RequestDtoBundle.php -------------------------------------------------------------------------------- /src/Resources/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prugala/symfony-request-dto/HEAD/src/Resources/config/services.yaml -------------------------------------------------------------------------------- /src/Serializer/Normalizer/CustomNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prugala/symfony-request-dto/HEAD/src/Serializer/Normalizer/CustomNormalizer.php --------------------------------------------------------------------------------