Download the PHP package proklung/symfony-guzzle-bundle without Composer

On this page you can find all versions of the php package proklung/symfony-guzzle-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 symfony-guzzle-bundle

Бандл для получения сконфигурирированных экземпляров Guzzle. Поддержка middlewares и т.д.

Форк пакета, доработано под личные нужды (добавлен адаптер для кэширования в Битриксе, и т.п).

Установка

1) composer require proklung/symfony-guzzle-bundle

Использование

Конфигурация

You may also enable the included logger, in order log outcoming requests:

Autowiring

If you rely on Symfony autowiring, you can choose to alias a specific service to the GuzzleHttp\ClientInterface interface and GuzzlHttp\Client class.

Then, your github_api client will be automatically injected into your controller or service:

Creating a service for your client

There are two ways for creating a service for your client:

Creating a client using semantic configuration

Simply write the following code:

The previous code will create a new service, called csa_guzzle.client.github_api, that you can use in your controller, or that you can inject in another service:

You may want to mark the service as lazy.

If you override your client's class, you can also set the class for your client:

Of course, you need to make sure that your client class' constructor has exactly the same signature as Guzzle's Client class.

Registering your own service

To have a client supported by the bundle, simply tag it as such:

YAML:

Creating new middleware

Creating a new Guzzle middleware is as easy as creating a symfony service and using the csa_guzzle.middleware tag, giving it an alias and (optionally) a priority:

You can also define middleware as a class with the __invoke method like this:

The service definition for such a class is then:

Middleware are automatically used by all your clients, if you are using the semantic configuration. However, if you wish to, you can limit a client to a list of specific middleware:

You can also disable specific middleware, by prefixing the middleware name with a ! character:

You can either whitelist or blacklist middleware. Using both whitelisting and blacklisting will trigger an exception.

When registering your own clients with the bundle, you can explicitly list all enabled middleware. The middleware attribute takes a space-delimited list of middleware names. In that case only the specified middleware will be registered for that client:

YAML:

BitrixCacheAdapter

Определяется сервис кэширования. Например, так:

И в конфигурации бандла указывается:

Available middleware

Currently, five middleware are available:

The logger middleware

The logger middleware's objective is to provide a simple tool for logging Guzzle requests.

Enabling request logging, you simply need to enable it in Symfony's configuration:

Like the debug middleware, there's also a shorthand syntax to enable it:

Using the advanced configuration, you may also configure your own logger, as long as it implements the PSR-3 LoggerInterface:

You can configure the log format using the syntax described in guzzlehttp/guzzle's documentation. You may also use of the three levels described in the formatter: clf (Apache log format), debug, or short:

You could also change the level of logging, for dev, you likely want debug, for prod, you likely want error. You'll find more log levels in the LogLevel of php-fig.

The cache middleware

The cache middleware's objective is to provide a very simple cache, in order to cache Guzzle responses.

Even though only a doctrine/cache adapter is provided (Prokl\GuzzleBundle\GuzzleHttp\Cache\DoctrineAdapter), the middleware is agnostic. If you wish to use your own cache implementation with the cache middleware, you simply need to implement Prokl\GuzzleBundle\GuzzleHttp\Cache\StorageAdapterInterface, and you're set!

This middleware can be configured with the following configuration:

To use the doctrine cache adapter, you need to use the Prokl\GuzzleBundle\GuzzleHttp\Cache\DoctrineAdapter class, in which you should inject your doctrine cache service. For example, using doctrine/cache's FilesystemCache:

The mock middleware

When running tests, you often want to disable real HTTP requests to your (or an external) API. The mock middleware can record those requests to replay them in tests.

The mock middleware can work in two modes:

Of course, this middleware should only be used in the test environment (or dev, if you don't have access to the remote server):

The generated files can then be committed in the VCS.

To use them, simply change the mode to replay:

A few customizations can be done with the mock middleware. You can indeed blacklist:

For this, you can simply configure your client as follows:

Configuration reference

To log request/response body you can use {req_body} and {res_body} respectively in format setting.

Full list of logs variables with description:

Variable Substitution
{request} Full HTTP request message
{response} Full HTTP response message
{ts} Timestamp
{host} Host of the request
{method} Method of the request
{url} URL of the request
{host} Host of the request
{protocol} Request protocol
{version} Protocol version
{resource} Resource of the request (path + query + fragment)
{port} Port of the request
{hostname} Hostname of the machine that sent the request
{code} Status code of the response (if available)
{phrase} Reason phrase of the response (if available)
{curl_error} Curl error message (if available)
{curl_code} Curl error code (if available)
{curl_stderr} Curl standard error (if available)
{connect_time} Time in seconds it took to establish the connection (if available)
{total_time} Total transaction time in seconds for last transfer (if available)
{reqheader*} Replace * with the lowercased name of a request header to add to the message
{resheader*} Replace * with the lowercased name of a response header to add to the message
{req_body} Request body
{res_body} Response body

Reference Guzzle Log Plugin Docs

Прочее

1) Альтернативный Guzzle Logger - для использования вне рамок бандла - Prokl\GuzzleBundle\Middlewares\Raw\GuzzleLogger


All versions of symfony-guzzle-bundle with dependencies

PHP Build Version
Package Version
Requires php Version >=7.1 || ^8.0
psr/cache Version ^1.0
psr/simple-cache Version ^1.0
symfony/dependency-injection Version ^4.4 || ^5.0
symfony/http-kernel Version ^4.4 || ^5.0
symfony/config Version ^4.4 || ^5.0
symfony/filesystem Version ^4.4 || ^5.0
guzzlehttp/guzzle Version ~6|~7
twig/twig Version ~2 | ~3
doctrine/cache Version ^1
ext-json Version *
ext-dom Version *
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 proklung/symfony-guzzle-bundle contains the following files

Loading the files please wait ....