Skip to content

Commit d01671c

Browse files
jvshahiddavidjahn
authored andcommitted
updates composer version from 1.0.0-alpha11 to 1.0.0-beta1
[#115175869] Signed-off-by: David Jahn <[email protected]>
1 parent 465edd6 commit d01671c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

extensions/composer/extension.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def __init__(self, ctx):
151151

152152
def _defaults(self):
153153
return {
154-
'COMPOSER_VERSION': '1.0.0-alpha11',
154+
'COMPOSER_VERSION': '1.0.0-beta1',
155155
'COMPOSER_PACKAGE': 'composer.phar',
156156
'COMPOSER_DOWNLOAD_URL': '/composer/'
157157
'{COMPOSER_VERSION}/{COMPOSER_PACKAGE}',

manifest.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ dependencies:
9393
- cflinuxfs2
9494
md5: e7f3efcf70d23da78eb1365c7d92c109
9595
- name: composer
96-
version: 1.0.0-alpha11
97-
uri: https://pivotal-buildpacks.s3.amazonaws.com/php/binaries/trusty/composer/1.0.0-alpha11/composer.phar
96+
version: 1.0.0-beta1
97+
uri: https://pivotal-buildpacks.s3.amazonaws.com/php/binaries/trusty/composer/1.0.0-beta1/composer.phar
9898
cf_stacks:
9999
- cflinuxfs2
100-
md5: 488ca7972e447e0e1b2988f66d8e01e6
100+
md5: ce74af6e6ea8b4a4901e57fda4c5c4f6

tests/test_composer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def test_composer_tool_install(self):
6464
# make sure composer is installed
6565
assert installer._installer.calls().once()
6666
assert installer._installer.calls()[0].args[0] == \
67-
'/composer/1.0.0-alpha11/composer.phar', \
67+
'/composer/1.0.0-beta1/composer.phar', \
6868
"was %s" % installer._installer.calls()[0].args[0]
6969

7070
def test_composer_tool_install_latest(self):

0 commit comments

Comments
 (0)