Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
pedro-mendonca committed Jun 27, 2021
2 parents 7506afc + 0fb9b21 commit aab4f2f
Show file tree
Hide file tree
Showing 5 changed files with 8,754 additions and 7,348 deletions.
8 changes: 4 additions & 4 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
.distignore export-ignore
.editorconfig export-ignore
.eslintignore export-ignore
.eslintrc export-ignore
.eslintrc.json export-ignore
.gitattributes export-ignore
.gitignore export-ignore
.remarkrc export-ignore
.stylelintrc export-ignore
.remarkrc.json export-ignore
.stylelintrc.json export-ignore
package-lock.json export-ignore
package.json export-ignore
phpcompat.xml export-ignore
phpcs.xml export-ignore
phpstan.neon export-ignore
readme.txt export-ignore
README.md export-ignore
25 changes: 21 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"wp-coding-standards/wpcs": "^2.3.0",
"phpcompatibility/phpcompatibility-wp": "^2.1.1",
"szepeviktor/phpstan-wordpress": "^0.7.5"
"szepeviktor/phpstan-wordpress": "^0.7.6"
},
"config": {
"optimize-autoloader": true
Expand All @@ -33,7 +33,11 @@
"format": "phpcbf -v --standard=phpcs.xml",
"compat": "phpcs -v --standard=phpcompat.xml",
"analyse": "phpstan analyse -c phpstan.neon --memory-limit=1G",
"scripts-list": "composer run-script --list"
"scripts-list": "composer run-script --list",
"build": [
"composer install --no-dev",
"composer archive --file=translation-tools --format=zip"
]
},
"scripts-descriptions": {
"test": "Runs all available code tests (PHP_CodeSniffer and PHPStan).",
Expand All @@ -42,6 +46,19 @@
"format": "Runs the PHP code sniffer and automatically fix errors.",
"compat": "Runs the PHPCompatibilityWP code sniffer.",
"analyse": "Runs the PHPStan code static analysis.",
"scripts-list": "List all Composer scripts."
}
"scripts-list": "List all Composer scripts.",
"build": "Remove dev dependencies, build zip archive."
},
"archive": {
"exclude": [
"composer.*",
"!/vendor"
]
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/pedro-mendonca"
}
]
}
2 changes: 1 addition & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit aab4f2f

Please sign in to comment.