ddeboer / GuzzleBundle

A Symfony2 bundle for integrating Guzzle, a PHP framework for building RESTful web service clients
63 stars 29 forks source link

Symfony native configuration support #10

Open zerkalica opened 12 years ago

zerkalica commented 12 years ago

I added option to configuration tree. Now supported native symfony configuration: yml or xml.

# app/config/config.yml
ddeboer_guzzle:
    service_builder:
        configuration:
            aws:
                params:
                    access_key: 12345
                    secret_key: abcd
            s3:
                class: Guzzle\Aws\S3\S3Client
                extends: aws
                params:
                    subdomain: michael
mtdowling commented 12 years ago

This looks pretty cool. :ship: