wordpress-activitypub/composer.json

47 lines
1.4 KiB
JSON
Raw Normal View History

2018-08-18 10:35:39 +00:00
{
"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": {
2019-09-27 08:12:59 +00:00
"php": ">=5.6.0",
2022-07-08 19:13:23 +00:00
"composer/installers": "^1.0 || ^2.0"
2018-08-18 10:35:39 +00:00
},
2019-02-19 21:43:14 +00:00
"require-dev": {
2022-01-27 10:52:53 +00:00
"phpunit/phpunit": "^5.7.21 || ^6.5 || ^7.5 || ^8",
2020-02-11 08:58:49 +00:00
"phpcompatibility/php-compatibility": "*",
2022-01-27 11:22:14 +00:00
"phpcompatibility/phpcompatibility-wp": "*",
2020-02-11 08:58:49 +00:00
"squizlabs/php_codesniffer": "3.*",
2023-07-20 00:54:07 +00:00
"wp-coding-standards/wpcs": "dev-develop",
"yoast/phpunit-polyfills": "^2.0",
2023-07-19 21:49:25 +00:00
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"sirbrillig/phpcs-variable-analysis": "^2.11",
"phpcsstandards/phpcsextra": "^1.1.0"
2019-02-19 21:43:14 +00:00
},
2022-07-08 19:10:25 +00:00
"config": {
"allow-plugins": true
},
"allow-plugins": {
"composer/installers": true
},
2018-08-18 10:35:39 +00:00
"license": "MIT",
"authors": [
{
"name": "Matthias Pfefferle",
"email": "pfefferle@gmail.com"
}
],
"extra": {
"installer-name": "activitypub"
2019-08-18 20:53:01 +00:00
},
"scripts": {
2022-12-27 16:01:10 +00:00
"test": [
"composer install",
"bin/install-wp-tests.sh activitypub-test root activitypub-test test-db latest true",
"vendor/bin/phpunit"
2023-07-19 21:49:25 +00:00
],
"lint": [
2023-07-20 01:39:58 +00:00
"vendor/bin/phpcs -n -q"
2022-12-27 16:01:10 +00:00
]
2018-08-18 10:35:39 +00:00
}
}