├── .gitignore ├── .travis.yml ├── Decoder ├── DecoderInterface.php ├── DecoderProviderInterface.php ├── JsonDecoder.php ├── JsonToFormDecoder.php └── XmlDecoder.php ├── README.md ├── Tests ├── Decoder │ └── JsonToFormDecoderTest.php └── bootstrap.php ├── Util └── Codes.php ├── composer.json └── phpunit.xml.dist /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSRest/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSRest/HEAD/.travis.yml -------------------------------------------------------------------------------- /Decoder/DecoderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSRest/HEAD/Decoder/DecoderInterface.php -------------------------------------------------------------------------------- /Decoder/DecoderProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSRest/HEAD/Decoder/DecoderProviderInterface.php -------------------------------------------------------------------------------- /Decoder/JsonDecoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSRest/HEAD/Decoder/JsonDecoder.php -------------------------------------------------------------------------------- /Decoder/JsonToFormDecoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSRest/HEAD/Decoder/JsonToFormDecoder.php -------------------------------------------------------------------------------- /Decoder/XmlDecoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSRest/HEAD/Decoder/XmlDecoder.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSRest/HEAD/README.md -------------------------------------------------------------------------------- /Tests/Decoder/JsonToFormDecoderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSRest/HEAD/Tests/Decoder/JsonToFormDecoderTest.php -------------------------------------------------------------------------------- /Tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSRest/HEAD/Tests/bootstrap.php -------------------------------------------------------------------------------- /Util/Codes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSRest/HEAD/Util/Codes.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSRest/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfSymfony/FOSRest/HEAD/phpunit.xml.dist --------------------------------------------------------------------------------