File tree Expand file tree Collapse file tree 1 file changed +46
-0
lines changed
Expand file tree Collapse file tree 1 file changed +46
-0
lines changed Original file line number Diff line number Diff line change 1+ # AWS Service Provider for Symfony
2+
3+ [ ![ @awsforphp on Twitter] ( http://img.shields.io/badge/twitter-%40awsforphp-blue.svg?style=flat )] ( https://twitter.com/awsforphp )
4+ [ ![ Build Status] ( https://travis-ci.org/aws/aws-sdk-php-symfony.svg )] ( https://travis-ci.org/aws/aws-sdk-php-symfony )
5+ [ ![ Latest Stable Version] ( https://poser.pugx.org/aws/aws-sdk-php-symfony/v/stable.png )] ( https://packagist.org/packages/aws/aws-sdk-php-symfony )
6+ [ ![ Total Downloads] ( https://poser.pugx.org/aws/aws-sdk-php-symfony/downloads.png )] ( https://packagist.org/packages/aws/aws-sdk-php-symfony )
7+
8+ A Symfony bundle for including the [ AWS SDK for PHP] ( https://github.com/aws/aws-sdk-php ) .
9+
10+ ## Installation
11+
12+ The AWS bundle can be installed via [ Composer] ( http://getcomposer.org ) by requiring the
13+ ` aws/aws-sdk-php-symfony ` package in your project's ` composer.json ` :
14+
15+ ``` json
16+ {
17+ "require" : {
18+ "aws/aws-sdk-php-symfony" : " ~1.0"
19+ }
20+ }
21+ ```
22+
23+ and adding an instance of ` Aws\Symfony\AwsBundle ` to your application's kernel:
24+
25+ ``` php
26+ class AppKernel extends Kernel
27+ {
28+ public function registerBundles()
29+ {
30+ return [
31+ ...
32+ new \Aws\Symfony\AwsBundle(),
33+ ];
34+ }
35+
36+ ...
37+ }
38+ ```
39+
40+ ## Links
41+
42+ * [ AWS SDK for PHP on Github] ( http://github.com/aws/aws-sdk-php )
43+ * [ AWS SDK for PHP website] ( http://aws.amazon.com/sdkforphp/ )
44+ * [ AWS on Packagist] ( https://packagist.org/packages/aws )
45+ * [ License] ( http://aws.amazon.com/apache2.0/ )
46+ * [ Symfony website] ( http://symfony.com/ )
You can’t perform that action at this time.
0 commit comments