Skip to content

Commit

Permalink
Merge pull request #278 from 10up/upkeep/compat-tool
Browse files Browse the repository at this point in the history
upkeep: Fix the repository name for wp-compat-validation-tool
  • Loading branch information
Sidsector9 authored Oct 26, 2023
2 parents 01821ca + 50f8fd9 commit 24010b2
Show file tree
Hide file tree
Showing 5 changed files with 299 additions and 109 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ screenshots
assets/js/build
.wp-env.override.json
.idea
10up-lib

tests/cypress/screenshots
tests/cypress/videos
Expand Down
22 changes: 17 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,24 +20,36 @@
"test": "phpunit",
"test:acceptance": "wpacceptance run",
"lint": "phpcs --extensions=php -s .",
"lint-fix": "phpcbf --extensions=php ."
"lint-fix": "phpcbf --extensions=php .",
"post-install-cmd": [
"./10up-lib/wp-compat-validation-tool/replace-namespace.sh RSA_Validator"
],
"post-update-cmd": [
"./10up-lib/wp-compat-validation-tool/replace-namespace.sh RSA_Validator"
]
},
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
},
"platform-check": false
},
"require": {
"10up/wp-compat-validation-tool": "dev-trunk",
"mlocati/ip-lib": "dev-master",
"siddharth/wp-compat-checker": "dev-master",
"php": ">=7.4"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/Sidsector9/wp-compat-checker.git"
"url": "https://github.com/10up/wp-compat-validation-tool.git"
}
]
],
"extra": {
"installer-paths": {
"./{$name}/": ["10up/wp-compat-validation-tool"]
}
}
}
Loading

0 comments on commit 24010b2

Please sign in to comment.