Ticket #49783: 49783.2.diff
File 49783.2.diff, 1.7 KB (added by , 5 years ago) |
---|
-
.gitignore
9 9 /phpunit.xml 10 10 /.phpcs.xml 11 11 /phpcs.xml 12 /phpcompat.xml 13 /.phpcs-cache.json 14 /.phpcompat-cache.json 12 15 /tests/phpunit/data/plugins/wordpress-importer 13 16 /tests/phpunit/data/.trac-ticket-cache* 14 17 /tests/qunit/compiled.html -
.travis.yml
15 15 apt: true 16 16 directories: 17 17 - $HOME/.npm 18 - "./.phpcs-cache.json" 19 - "./.phpcompat-cache.json" 18 20 - vendor 19 21 20 22 env: -
phpcompat.xml.dist
11 11 <arg name="extensions" value="php"/> 12 12 13 13 <!-- 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"/> 15 15 16 16 <!-- Set the memory limit to 256M. 17 17 For most standard PHP configurations, this means the memory limit will temporarily be raised. -
phpcs.xml.dist
6 6 <arg name="extensions" value="php"/> 7 7 8 8 <!-- 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"/> 10 10 11 11 <!-- Set the memory limit to 256M. 12 12 For most standard PHP configurations, this means the memory limit will temporarily be raised.