Skip to content

Commit

Permalink
Merge pull request #59 from AndrewLowther/support/symfony-3-support
Browse files Browse the repository at this point in the history
Updating the services implementation so it now supports symfony 3
  • Loading branch information
C{o}deKaiser authored Mar 5, 2018
2 parents a800c6d + 4bcd066 commit 02b52c5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Resources/config/aws_config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@

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

<service id="aws_service" class="AwsService" factory-service="aws_factory" factory-method="get" abstract="true">
<service id="aws_service" class="AwsService" abstract="true">
<factory service="aws_factory" method="get"></factory>
<argument type="service" id="aws"/>
</service>

Expand Down
3 changes: 2 additions & 1 deletion Resources/config/aws_service.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@

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

<service id="aws_service" class="AwsService" factory-service="aws_factory" factory-method="get" abstract="true">
<service id="aws_service" class="AwsService" abstract="true">
<factory service="aws_factory" method="get"></factory>
<argument type="service" id="aws"/>
</service>

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "thephalcons/amazon-webservices-bundle",
"name": "andrewlowther/amazon-webservices-bundle",
"description": "A Symfony2 Bundle for interfacing with Amazon Web Services (AWS)",
"keywords": ["amazon", "aws", "web services", "aws-sdk-php"],
"license": "MIT",
Expand Down

0 comments on commit 02b52c5

Please sign in to comment.