wordpress-activitypub/composer.json

39 lines
1.2 KiB
JSON
Raw Normal View History

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",
2018-08-18 12:35:39 +02:00
"composer/installers": "~1.0"
},
2019-02-19 22:43:14 +01:00
"require-dev": {
2020-02-11 09:58:49 +01:00
"phpunit/phpunit": "^5.5",
"phpcompatibility/php-compatibility": "*",
"squizlabs/php_codesniffer": "3.*",
"wp-coding-standards/wpcs": "^0.14.1"
2019-02-19 22:43:14 +01:00
},
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": {
"test": [
"composer install",
"bin/install-wp-tests.sh wordpress wordpress wordpress",
"vendor/bin/phpunit"
2020-02-11 09:58:49 +01:00
],
"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"
2019-08-18 22:53:01 +02:00
]
2018-08-18 12:35:39 +02:00
}
}