├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── flake.lock ├── flake.nix ├── phpunit.xml.dist └── src ├── Attribute └── Input.php ├── DependencyInjection ├── Configuration.php └── RequestInputExtension.php ├── EventListener ├── ExceptionListener.php └── ReadInputListener.php ├── Exception ├── DeserializationException.php ├── ExceptionInterface.php ├── UnexpectedFormatException.php └── ValidationException.php ├── Factory ├── InputFactory.php └── InputFactoryInterface.php ├── InputInterface.php ├── Metadata ├── InputMetadataFactory.php └── InputMetadataFactoryInterface.php ├── RequestInputBundle.php └── ValueResolver └── InputValueResolver.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfmok/request-input-bundle/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfmok/request-input-bundle/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfmok/request-input-bundle/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfmok/request-input-bundle/HEAD/composer.json -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfmok/request-input-bundle/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfmok/request-input-bundle/HEAD/flake.nix -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfmok/request-input-bundle/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Attribute/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfmok/request-input-bundle/HEAD/src/Attribute/Input.php -------------------------------------------------------------------------------- /src/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfmok/request-input-bundle/HEAD/src/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/DependencyInjection/RequestInputExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfmok/request-input-bundle/HEAD/src/DependencyInjection/RequestInputExtension.php -------------------------------------------------------------------------------- /src/EventListener/ExceptionListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfmok/request-input-bundle/HEAD/src/EventListener/ExceptionListener.php -------------------------------------------------------------------------------- /src/EventListener/ReadInputListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfmok/request-input-bundle/HEAD/src/EventListener/ReadInputListener.php -------------------------------------------------------------------------------- /src/Exception/DeserializationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfmok/request-input-bundle/HEAD/src/Exception/DeserializationException.php -------------------------------------------------------------------------------- /src/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfmok/request-input-bundle/HEAD/src/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /src/Exception/UnexpectedFormatException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfmok/request-input-bundle/HEAD/src/Exception/UnexpectedFormatException.php -------------------------------------------------------------------------------- /src/Exception/ValidationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfmok/request-input-bundle/HEAD/src/Exception/ValidationException.php -------------------------------------------------------------------------------- /src/Factory/InputFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfmok/request-input-bundle/HEAD/src/Factory/InputFactory.php -------------------------------------------------------------------------------- /src/Factory/InputFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfmok/request-input-bundle/HEAD/src/Factory/InputFactoryInterface.php -------------------------------------------------------------------------------- /src/InputInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfmok/request-input-bundle/HEAD/src/InputInterface.php -------------------------------------------------------------------------------- /src/Metadata/InputMetadataFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfmok/request-input-bundle/HEAD/src/Metadata/InputMetadataFactory.php -------------------------------------------------------------------------------- /src/Metadata/InputMetadataFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfmok/request-input-bundle/HEAD/src/Metadata/InputMetadataFactoryInterface.php -------------------------------------------------------------------------------- /src/RequestInputBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfmok/request-input-bundle/HEAD/src/RequestInputBundle.php -------------------------------------------------------------------------------- /src/ValueResolver/InputValueResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sfmok/request-input-bundle/HEAD/src/ValueResolver/InputValueResolver.php --------------------------------------------------------------------------------