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