jongotlin / arbetsformedlingen-ads-bundle
Installs: 5 762
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: ^7.2
- jongotlin/arbetsformedlingen-ads: ^1.0
- symfony/framework-bundle: ^4.0|^5.0
Requires (Dev)
- php-http/guzzle6-adapter: ^1.1
This package is auto-updated.
Last update: 2024-10-11 04:32:11 UTC
README
Symfony bundle for jongotlin/arbetsformedlingen-ads
Installation
Install with composer and your favourite http adapter (in this case Guzzle 6)
$ composer require php-http/client-implementation:^1.0 php-http/discovery:^1.0 php-http/guzzle6-adapter:^1.0 php-http/httplug:^1.0 php-http/message:^1.0 jongotlin/arbetsformedlingen-ads-bundle:^1.0
In services.yml
services: http.client: class: Http\Adapter\Guzzle6\Client arguments: - '@client' client: class: GuzzleHttp\Client
In config.yml
arbetsformedlingen_ads: http_client: 'http.client' test_environment: true loggers: ['logger', 'your.custom.logger.service_name']
In AppKernel.php
$bundles = array( // ... new JGI\ArbetsformedlingenAdsBundle\ArbetsformedlingenAdsBundle(), );