-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix crash in agent info if no URL * Disable IP info * Add new option for max-age header * Rename the PHPCS file * Remove deprecated ini_set * Don’t double encode URLs when checking them Although it worked, it looked like it didn’t * Improve linting * Update locale * Update version * Update PHP version info * Bundle * Set version
- Loading branch information
1 parent
a0780ec
commit a7c8dcd
Showing
98 changed files
with
5,878 additions
and
2,354 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,29 @@ | ||
{ | ||
"require-dev": { | ||
"vimeo/psalm": "^3.14.2", | ||
"yoast/phpunit-polyfills": "^1.0", | ||
"wp-cli/wp-cli-bundle": "*", | ||
"humanmade/psalm-plugin-wordpress": "^1.0", | ||
"phpunit/phpunit": "^9.5", | ||
"phpstan/phpstan": "^1.10", | ||
"szepeviktor/phpstan-wordpress": "^1.3", | ||
"phpstan/extension-installer": "^1.3" | ||
}, | ||
"scripts": { | ||
"pot": "wp i18n make-pot . locale/redirection.pot --ignore-domain --exclude=redirection-strings.php", | ||
"json": "wp i18n make-json locale --purge", | ||
"test": "./vendor/bin/phpunit", | ||
"phpstan": "./vendor/bin/phpstan analyse --configuration=phpstan.neon" | ||
}, | ||
"config": { | ||
"allow-plugins": { | ||
"dealerdirect/phpcodesniffer-composer-installer": true, | ||
"phpstan/extension-installer": true | ||
} | ||
} | ||
"require-dev": { | ||
"vimeo/psalm": "^5.18", | ||
"yoast/phpunit-polyfills": "^2.0", | ||
"wp-cli/wp-cli-bundle": "^2.9", | ||
"phpunit/phpunit": "^10.5", | ||
"phpstan/phpstan": "^1.10", | ||
"szepeviktor/phpstan-wordpress": "^1.3", | ||
"phpstan/extension-installer": "^1.3", | ||
"squizlabs/php_codesniffer": "^3.8", | ||
"wp-coding-standards/wpcs": "^3.0", | ||
"sirbrillig/phpcs-variable-analysis": "^2.11", | ||
"sirbrillig/phpcs-no-get-current-user": "^1.1", | ||
"phpcompatibility/php-compatibility": "^9.3" | ||
}, | ||
"scripts": { | ||
"pot": "wp i18n make-pot . locale/redirection.pot --ignore-domain --exclude=redirection-strings.php", | ||
"json": "wp i18n make-json locale --purge", | ||
"test": "./vendor/bin/phpunit", | ||
"phpstan": "./vendor/bin/phpstan analyse --configuration=phpstan.neon", | ||
"lint": "./vendor/bin/phpcs --standard=phpcs.xml --extensions=php --ignore=vendor ./models ./api ./actions ./modules ./matches ./fileio ./database ./*.php" | ||
}, | ||
"config": { | ||
"allow-plugins": { | ||
"dealerdirect/phpcodesniffer-composer-installer": true, | ||
"phpstan/extension-installer": true | ||
} | ||
} | ||
} |
Oops, something went wrong.