Skip to content

Commit 02b52c5

Browse files
author
C{o}deKaiser
authored
Merge pull request #59 from AndrewLowther/support/symfony-3-support
Updating the services implementation so it now supports symfony 3
2 parents a800c6d + 4bcd066 commit 02b52c5

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

Resources/config/aws_config.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@
3232

3333
<service id="aws_factory" class="%aws_factory.class%"/>
3434

35-
<service id="aws_service" class="AwsService" factory-service="aws_factory" factory-method="get" abstract="true">
35+
<service id="aws_service" class="AwsService" abstract="true">
36+
<factory service="aws_factory" method="get"></factory>
3637
<argument type="service" id="aws"/>
3738
</service>
3839

Resources/config/aws_service.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@
3232

3333
<service id="aws_factory" class="%aws_factory.class%"/>
3434

35-
<service id="aws_service" class="AwsService" factory-service="aws_factory" factory-method="get" abstract="true">
35+
<service id="aws_service" class="AwsService" abstract="true">
36+
<factory service="aws_factory" method="get"></factory>
3637
<argument type="service" id="aws"/>
3738
</service>
3839

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "thephalcons/amazon-webservices-bundle",
2+
"name": "andrewlowther/amazon-webservices-bundle",
33
"description": "A Symfony2 Bundle for interfacing with Amazon Web Services (AWS)",
44
"keywords": ["amazon", "aws", "web services", "aws-sdk-php"],
55
"license": "MIT",

0 commit comments

Comments
 (0)