23. Araxis Merge File Comparison Report

Produced by Araxis Merge on 2020-08-14 00:01:30 +0000. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

23.1 Files compared

#LocationFileLast Modified
12020-08-14 00:01:30 +0000
2Porto v3.2.4/Magento 2.x/Porto Theme/app/code/Mageplaza/AjaxLayertravis.yml2020-06-26 11:11:14 +0000

23.2 Comparison summary

DescriptionBetween
Files 1 and 2
Text BlocksLines
Unchanged00
Changed00
Inserted165
Removed00

23.3 Comparison options

WhitespaceConsecutive whitespace is treated as a single space
Character caseDifferences in character case are significant
Line endingsDifferences in line endings (CR and LF characters) are ignored
CR/LF charactersNot shown in the comparison detail
Active line-pairing rules

23.4 Active regular expressions

No regular expressions were active.

23.5 Comparison detail

    1 language: php
    2 php:
    3   - 7.0
    4   - 7.1
    5   - 7.2
    6 sudo: required
    7 dist: trusty
    8 env:
    9   global:
    10     - COMPOSER_BIN_DIR=~/bin
    11     - INTEGRATION_SETS=3
    12     - NODE_JS_VERSION=6
    13     - MAGENTO_HOST_NAME="magento2.travis"
    14     - COMPOSER_MODULE=mageplaza/magento-2-seo-extension
    15   matrix:
    16     - MAGENTO_VERSION=2.2.1 TEST_SUITE=integration INTEGRATION_INDEX=1
    17     - MAGENTO_VERSION=2.2.1 TEST_SUITE=integration INTEGRATION_INDEX=2
    18     - MAGENTO_VERSION=2.2.1 TEST_SUITE=integration INTEGRATION_INDEX=3
    19     - MAGENTO_VERSION=2.2.2 TEST_SUITE=static
    20     - MAGENTO_VERSION=2.2.2 TEST_SUITE=js GRUNT_COMMAND=static
    21     - MAGENTO_VERSION=2.2.2 TEST_SUITE=integration INTEGRATION_INDEX=1
    22     - MAGENTO_VERSION=2.2.2 TEST_SUITE=integration INTEGRATION_INDEX=2
    23     - MAGENTO_VERSION=2.2.2 TEST_SUITE=integration INTEGRATION_INDEX=3
    24 
    25 matrix:
    26   exclude:
    27     - php: 7.0
    28       env: MAGENTO_VERSION=2.2.2 TEST_SUITE=js GRUNT_COMMAND=static
    29     - php: 7.0
    30       env: MAGENTO_VERSION=2.2.2 TEST_SUITE=static
    31 cache:
    32   apt: true
    33   directories:
    34     - "$HOME/.composer/cache"
    35     - "$HOME/.nvm"
    36 addons:
    37   apt:
    38     packages:
    39       - mysql-server-5.6
    40       - mysql-client-core-5.6
    41       - mysql-client-5.6
    42       - postfix
    43   firefox: '46.0'
    44   hosts:
    45     - magento2.travis
    46 before_install:
    47   - git clone https://github.com/magento/magento2 --branch $MAGENTO_VERSION
    48   - cd magento2
    49   - bash ./dev/travis/before_install.sh
    50 install:
    51   - composer install --no-interaction --prefer-dist
    52   - composer require $COMPOSER_MODULE
    53 before_script:
    54   #- cp -f ${TRAVIS_BUILD_DIR}/dev/tests/integration/phpunit.xml.dist dev/tests/integration/
    55   - echo "vendor/$COMPOSER_MODULE" > dev/tests/static/testsuite/Magento/Test/Less/_files/whitelist/common.txt
    56   - echo "vendor/$COMPOSER_MODULE" > dev/tests/static/testsuite/Magento/Test/Php/_files/whitelist/common.txt
    57   - echo "vendor/$COMPOSER_MODULE/**/*.js" > dev/tests/static/testsuite/Magento/Test/Js/_files/whitelist/magento.txt
    58   - bash ./dev/travis/before_script.sh
    59 script:
    60   - test $TEST_SUITE = "static" && TEST_FILTER='--filter "Magento\\Test\\Php\\LiveCodeTest"' || true
    61   - test $TEST_SUITE = "functional" && TEST_FILTER='dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests.php' || true
    62   - if [ $TEST_SUITE == "functional" ]; then dev/tests/functional/vendor/phpunit/phpunit/phpunit -c dev/tests/$TEST_SUITE $TEST_FILTER; fi
    63   - if [ $TEST_SUITE != "functional" ] && [ $TEST_SUITE != "js" ]; then phpunit -c dev/tests/$TEST_SUITE $TEST_FILTER; fi
    64   - if [ $TEST_SUITE == "js" ]; then grunt $GRUNT_COMMAND; fi
    65