Make WordPress Core

Ticket #49783: 49783.2.diff

File 49783.2.diff, 1.7 KB (added by desrosj, 5 years ago)
  • .gitignore

     
    99/phpunit.xml
    1010/.phpcs.xml
    1111/phpcs.xml
     12/phpcompat.xml
     13/.phpcs-cache.json
     14/.phpcompat-cache.json
    1215/tests/phpunit/data/plugins/wordpress-importer
    1316/tests/phpunit/data/.trac-ticket-cache*
    1417/tests/qunit/compiled.html
  • .travis.yml

     
    1515  apt: true
    1616  directories:
    1717    - $HOME/.npm
     18    - "./.phpcs-cache.json"
     19    - "./.phpcompat-cache.json"
    1820    - vendor
    1921
    2022env:
  • phpcompat.xml.dist

     
    1111        <arg name="extensions" value="php"/>
    1212
    1313        <!-- Whenever possible, cache the scan results and re-use those for unchanged files on the next scan. -->
    14         <arg name="cache"/>
     14        <arg name="cache" value=".phpcompat-cache.json"/>
    1515
    1616        <!-- Set the memory limit to 256M.
    1717                 For most standard PHP configurations, this means the memory limit will temporarily be raised.
  • phpcs.xml.dist

     
    66        <arg name="extensions" value="php"/>
    77
    88        <!-- Whenever possible, cache the scan results and re-use those for unchanged files on the next scan. -->
    9         <arg name="cache"/>
     9        <arg name="cache" value=".phpcs-cache.json"/>
    1010
    1111        <!-- Set the memory limit to 256M.
    1212                 For most standard PHP configurations, this means the memory limit will temporarily be raised.