Download the PHP package sbsedv/input-converter-bundle without Composer

On this page you can find all versions of the php package sbsedv/input-converter-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package input-converter-bundle

PHPStan PHPCS-Fixer

sbsedv/input-converter-bundle

A Symfony ^6.1 bundle that adds the raw request body input to the http-foundation InputBag.


This bundle integrates sbsedv/input-converter into the Symfony Framework.

This bundle registers an event listener that runs as early as possible in the applications lifecycle and tries to parse the incoming request body and to add it to the main http-foundation request object.

By default this bundle comes with the following converters which are all enabled by default:

WARNING: You should not enable file_support for the formdata_converter.

The entire uploaded file would be copied into memory at least two times which will potentially use a lot of system memory (depending on the file size). PHPs upload_max_filesize INI setting has no effect, only post_max_size.

You should only rely on PHPs integrated file upload support.


Custom Converters

If you want to register a custom converter (e.g. for YAML support), you only have to register a service in your application that implements the SBSEDV\InputConverter\Converter\ConverterInterface.

The bundle has autoconfiguration setup and each service that implements that interface will automatically be picked up.


URLEncodedConverter Information

By default, the urlencoded_converter is disabled because Symfony\Component\HttpFoundation\Request::createFromGlobals() has the same functionality.

The vast majority of symfony applications boot up the framework in a way that creates the Request object with this static method. Because of this, the bundle disables its functionality by default to avoid unneccessary work.

In case you boot symfony without calling this method (e.g. in a runtime like Swoole), you can enable the functionality manually in the bundles config file.


All versions of input-converter-bundle with dependencies

PHP Build Version
Package Version
Requires php Version >=8.1
sbsedv/input-converter Version ^3.0
symfony/framework-bundle Version ^6.1
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package sbsedv/input-converter-bundle contains the following files

Loading the files please wait ....