7. Araxis Merge File Comparison Report

Produced by Araxis Merge on 2021-05-13 09:08:38 +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.

7.1 Files compared

#LocationFileLast Modified
1/Applications/Ampps/www/Porto 3.2.2/Theme Files/Magento 2.x/Porto Theme/app/code/Mageplaza/AjaxLayertravis.yml2020-06-26 11:11:14 +0000
2/Applications/Ampps/www/Porto v4.0.0/Theme Files/Magento 2.x/Porto Theme/app/code/Mageplaza/AjaxLayertravis.yml2020-06-26 11:11:14 +0000

7.2 Comparison summary

DescriptionBetween
Files 1 and 2
Text BlocksLines
Unchanged1130
Changed00
Inserted00
Removed00

7.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

7.4 Active regular expressions

No regular expressions were active.

7.5 Comparison detail

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