wordpress-activitypub-event.../composer.json
André Menrath 8fb92bfc10
All checks were successful
PHP Code Checker / PHP Code Checker (push) Successful in 36s
PHPUnit / PHPUnit – PHP 8.1 (push) Successful in 1m4s
PHPUnit / PHPUnit – PHP 8.2 (push) Successful in 1m3s
PHPUnit / PHPUnit – PHP 8.3 (push) Successful in 1m0s
Add Transformer for Eventin (WP Event Solution) (#62)
https://wordpress.org/plugins/wp-event-solution/
Reviewed-on: #62
Co-authored-by: André Menrath <andre.menrath@posteo.de>
Co-committed-by: André Menrath <andre.menrath@posteo.de>
2024-10-13 09:44:00 +02:00

70 lines
2.3 KiB
JSON

{
"name": "menrath/wordpress-activitypub-event-bridge",
"version": "1.0.0",
"description": "The ActivityPub Event Bridge help for event custom post types to federate properly.",
"type": "wordpress-plugin",
"require": {
"php": ">=8.1.0",
"composer/installers": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7.21 || ^6.5 || ^7.5 || ^8",
"phpcompatibility/php-compatibility": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"squizlabs/php_codesniffer": "3.*",
"wp-coding-standards/wpcs": "dev-develop",
"yoast/phpunit-polyfills": "^3.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"sirbrillig/phpcs-variable-analysis": "^2.11",
"phpcsstandards/phpcsextra": "^1.1.0",
"dms/phpunit-arraysubset-asserts": "^0.5.0"
},
"config": {
"allow-plugins": true
},
"allow-plugins": {
"composer/installers": true
},
"license": "AGPL",
"authors": [
{
"name": "André Menrath",
"email": "andre.menrath@event-federation.eu"
}
],
"extra": {
"installer-name": "activitypub-event-bridge"
},
"scripts": {
"lint": [
"vendor/bin/phpcs"
],
"lint:fix": [
"vendor/bin/phpcbf"
],
"prepare-test": [
"composer install",
"bin/install-wp-tests.sh wordpress-test root wordpress-test test-db latest true"
],
"test": [
"@prepare-test",
"@test-vs-event-list",
"@test-the-events-calendar",
"@test-gatherpress",
"@test-events-manager",
"@test-wp-event-manager",
"@test-eventin"
],
"test-debug": [
"@prepare-test",
"@test-eventin"
],
"test-vs-event-list": "phpunit --filter=vs_event_list",
"test-the-events-calendar": "phpunit --filter=the_events_calendar",
"test-gatherpress": "phpunit --filter=gatherpress",
"test-events-manager": "phpunit --filter=events_manager",
"test-wp-event-manager": "phpunit --filter=wp_event_manager",
"test-eventin": "phpunit --filter=eventin",
"test-all": "phpunit"
}
}