-
Notifications
You must be signed in to change notification settings - Fork 226
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* set to php 7.2 in sdk docker image to get tests running * Add unit tests for RiskData * drop RiskDataScore integration check * update README * Require PHP >=7.3.0 (#309) * Update README.md * Remove AmexExpressCheckout * Remove deviceSessionID and fraudMerchantID from lib/ * Update CreditCardTest integration * Remove deviceSessionID and fraudMerchantID from rest of tests * Remove masterpass (#311) * Remove MasterpassCard, MasterpassCardDetails, and relevant tests * Address remaining NEXT_MAJOR_VERSION notes (#314) * Rename isUsingInstanceProxy to isUsingProxy * Rename isAuthenticatedInstanceProxy to isAuthenticatedProxy * Remove TRANSACTION_EXTERNAL_VAULT_CARD_TYPE_IS_INVALID error code * Remove snake case parameters * Rename Android Pay to Google Pay (#310) * Php 8 support (#308) * update docker image to php8.0 * bump phpunit to >=9.0 * setUp and teardown must be void compatible * rename CloseTagTest, fix breaking changes from phpunit7-> 9 in unit tests * address phpunit deprecation warnings * make integration tests setUp void compatible * fix breaking changes in integration tests * update tests to resolve deprecation warnings * Don't create phpunit cache file * correct phpunit semver in composer.json * add phpunit result cache to gitignore just in case * update Dockerfile for php8 * Audit sanity language use * Rename isUsingInstanceProxy to isUsingProxy * Rename isAuthenticatedInstanceProxy to isAuthenticatedProxy * Remove TRANSACTION_EXTERNAL_VAULT_CARD_TYPE_IS_INVALID error code * better name for test to check we're omitting php closing tags * fixup deprecated tests from result of merging major update branch * DateTimeImmutable support (public issue #278) (#316) * Remove TRANSACTION_EXTERNAL_VAULT_CARD_TYPE_IS_INVALID error code * support DateTimeImmutableObjects for date params * Add `toArray` function to Base and Instance classes (resolves #289?) (#322) * Final tweaks - Major version 6 (#323) Co-authored-by: Samantha Cannillo <[email protected]>
- Loading branch information
2 people
authored and
GitHub Enterprise
committed
Apr 5, 2021
1 parent
1dde52a
commit 97b0b30
Showing
43 changed files
with
542 additions
and
943 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
FROM debian:stretch | ||
FROM debian:buster | ||
|
||
RUN apt-get update | ||
RUN apt-get -y install gnupg curl wget | ||
|
||
# For installing php7 | ||
RUN apt -y install lsb-release apt-transport-https ca-certificates | ||
RUN wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg | ||
RUN echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" | tee /etc/apt/sources.list.d/php7.3.list | ||
RUN echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" | tee /etc/apt/sources.list.d/php8.0.list | ||
|
||
RUN apt-get update | ||
|
||
RUN apt-get -y install rake php7.3 php7.3-cli php7.3-curl php-pear php7.3-xml php7.3-mbstring | ||
RUN update-alternatives --set php /usr/bin/php7.3 | ||
RUN apt-get -y install rake php8.0 php8.0-cli php8.0-curl php-pear php8.0-xml php8.0-mbstring | ||
|
||
RUN update-alternatives --set php /usr/bin/php8.0 && php -v | ||
WORKDIR /braintree-php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.