Skip to content

Commit

Permalink
Merge pull request #1 from WordPress/master
Browse files Browse the repository at this point in the history
Updating fork
  • Loading branch information
rafaelgallani authored Nov 25, 2020
2 parents 55bf177 + d3ded78 commit 813d9a5
Show file tree
Hide file tree
Showing 171 changed files with 5,647 additions and 3,393 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@ playground/dist
.cache
*.tsbuildinfo

# Report generated from tests
# Report generated from jest-junit
test/native/junit.xml

# Local overrides
.wp-env.override.json
phpunit.xml
phpunit-watcher.yml
11 changes: 9 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,26 @@
"support": {
"issues": "https://github.com/WordPress/gutenberg/issues"
},
"config": {
"process-timeout": 0
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"squizlabs/php_codesniffer": "^3.5",
"phpcompatibility/php-compatibility": "^9.3",
"wp-coding-standards/wpcs": "^2.2",
"sirbrillig/phpcs-variable-analysis": "^2.8",
"wp-phpunit/wp-phpunit": "^5.4"
"wp-phpunit/wp-phpunit": "^5.4",
"phpunit/phpunit": "^7.5.20",
"spatie/phpunit-watcher": "^1.23"
},
"require": {
"composer/installers": "~1.0"
},
"scripts": {
"format": "phpcbf --standard=phpcs.xml.dist --report-summary --report-source",
"lint": "phpcs --standard=phpcs.xml.dist --runtime-set ignore_warnings_on_exit 1"
"lint": "phpcs --standard=phpcs.xml.dist --runtime-set ignore_warnings_on_exit 1",
"test": "phpunit",
"test:watch": "phpunit-watcher watch < /dev/tty"
}
}
Loading

0 comments on commit 813d9a5

Please sign in to comment.