wordpress-activitypub/composer.json
dependabot[bot] 252a0ecc23
Update wp-coding-standards/wpcs requirement from ^0.14.1 to ^2.3.0
Updates the requirements on [wp-coding-standards/wpcs](https://github.com/WordPress/WordPress-Coding-Standards) to permit the latest version.
- [Release notes](https://github.com/WordPress/WordPress-Coding-Standards/releases)
- [Changelog](https://github.com/WordPress/WordPress-Coding-Standards/blob/develop/CHANGELOG.md)
- [Commits](https://github.com/WordPress/WordPress-Coding-Standards/compare/0.14.1...2.3.0)

---
updated-dependencies:
- dependency-name: wp-coding-standards/wpcs
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-07-13 18:08:22 +00:00

38 lines
1.2 KiB
JSON

{
"name": "pfefferle/wordpress-activitypub",
"description": "The ActivityPub protocol is a decentralized social networking protocol based upon the ActivityStreams 2.0 data format.",
"type": "wordpress-plugin",
"require": {
"php": ">=5.6.0",
"composer/installers": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "^5.5",
"phpcompatibility/php-compatibility": "*",
"squizlabs/php_codesniffer": "3.*",
"wp-coding-standards/wpcs": "^2.3.0"
},
"license": "MIT",
"authors": [
{
"name": "Matthias Pfefferle",
"email": "pfefferle@gmail.com"
}
],
"extra": {
"installer-name": "activitypub"
},
"scripts": {
"test": [
"composer install",
"bin/install-wp-tests.sh wordpress wordpress wordpress",
"vendor/bin/phpunit"
],
"post-install-cmd": [
"\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility,vendor/wp-coding-standards/wpcs"
],
"post-update-cmd": [
"\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility,vendor/wp-coding-standards/wpcs"
]
}
}