Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix failing CI #143

Merged
merged 3 commits into from Jan 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitattributes
Expand Up @@ -17,3 +17,4 @@
/features export-ignore
/Gemfile export-ignore
/Gemfile.lock export-ignore
/vendor export-ignore
2 changes: 1 addition & 1 deletion features/fixtures/symfony-2/Dockerfile
Expand Up @@ -24,7 +24,7 @@ RUN apt-get update && \
unzip

COPY . .
COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer
COPY --from=composer:2.2 /usr/bin/composer /usr/local/bin/composer

RUN sh setup-github-token.sh
RUN php setup-bugsnag-config.php
Expand Down
2 changes: 1 addition & 1 deletion features/fixtures/symfony-2/composer.json
Expand Up @@ -23,7 +23,7 @@
],
"require": {
"php": ">=5.3.9",
"bugsnag/bugsnag-symfony": "dev-master as 99.99.99",
"bugsnag/bugsnag-symfony": "dev-main as 99.99.99",
"doctrine/doctrine-bundle": "~1.4",
"doctrine/orm": "^2.4.8",
"incenteev/composer-parameter-handler": "~2.0",
Expand Down
2 changes: 1 addition & 1 deletion features/fixtures/symfony-4/Dockerfile
Expand Up @@ -24,7 +24,7 @@ RUN apt-get update && \
unzip

COPY . .
COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer
COPY --from=composer:2.2 /usr/bin/composer /usr/local/bin/composer

RUN sh setup-github-token.sh
RUN php setup-bugsnag-config.php
Expand Down
2 changes: 1 addition & 1 deletion features/fixtures/symfony-4/composer.json
Expand Up @@ -14,7 +14,7 @@
"php": ">=7.1.3",
"ext-ctype": "*",
"ext-iconv": "*",
"bugsnag/bugsnag-symfony": "dev-master as 99.99.99",
"bugsnag/bugsnag-symfony": "dev-main as 99.99.99",
"composer/package-versions-deprecated": "1.11.99.4",
"doctrine/annotations": "^1.0",
"doctrine/doctrine-bundle": "^2.4",
Expand Down
2 changes: 1 addition & 1 deletion features/fixtures/symfony-5/Dockerfile
Expand Up @@ -24,7 +24,7 @@ RUN apt-get update && \
unzip

COPY . .
COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer
COPY --from=composer:2.2 /usr/bin/composer /usr/local/bin/composer

RUN sh setup-github-token.sh
RUN php setup-bugsnag-config.php
Expand Down
2 changes: 1 addition & 1 deletion features/fixtures/symfony-5/composer.json
Expand Up @@ -16,7 +16,7 @@
"php": ">=7.2.5",
"ext-ctype": "*",
"ext-iconv": "*",
"bugsnag/bugsnag-symfony": "dev-master as 99.99.99",
"bugsnag/bugsnag-symfony": "dev-main as 99.99.99",
"composer/package-versions-deprecated": "1.11.99.2",
"doctrine/annotations": "^1.0",
"doctrine/doctrine-bundle": "^2.4",
Expand Down