2024-03-08 15:54:20 +01:00
|
|
|
{
|
2024-10-02 21:54:03 +02:00
|
|
|
"name": "menrath/wordpress-activitypub-event-bridge",
|
2024-10-13 09:44:00 +02:00
|
|
|
"version": "1.0.0",
|
2024-10-02 21:54:03 +02:00
|
|
|
"description": "The ActivityPub Event Bridge help for event custom post types to federate properly.",
|
2024-03-08 15:54:20 +01:00
|
|
|
"type": "wordpress-plugin",
|
|
|
|
"require": {
|
2024-09-21 14:59:26 +02:00
|
|
|
"php": ">=8.1.0",
|
|
|
|
"composer/installers": "^2.0"
|
2024-03-08 15:54:20 +01:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2024-09-23 16:21:12 +02:00
|
|
|
"phpunit/phpunit": "^5.7.21 || ^6.5 || ^7.5 || ^8",
|
2024-03-08 15:54:20 +01:00
|
|
|
"phpcompatibility/php-compatibility": "*",
|
|
|
|
"phpcompatibility/phpcompatibility-wp": "*",
|
|
|
|
"squizlabs/php_codesniffer": "3.*",
|
2024-09-23 16:21:12 +02:00
|
|
|
"wp-coding-standards/wpcs": "dev-develop",
|
|
|
|
"yoast/phpunit-polyfills": "^3.0",
|
2024-03-08 15:54:20 +01:00
|
|
|
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
|
2024-09-23 16:21:12 +02:00
|
|
|
"sirbrillig/phpcs-variable-analysis": "^2.11",
|
|
|
|
"phpcsstandards/phpcsextra": "^1.1.0",
|
|
|
|
"dms/phpunit-arraysubset-asserts": "^0.5.0"
|
2024-03-08 15:54:20 +01:00
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"allow-plugins": true
|
|
|
|
},
|
|
|
|
"allow-plugins": {
|
|
|
|
"composer/installers": true
|
|
|
|
},
|
|
|
|
"license": "AGPL",
|
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "André Menrath",
|
|
|
|
"email": "andre.menrath@event-federation.eu"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"extra": {
|
2024-10-02 21:54:03 +02:00
|
|
|
"installer-name": "activitypub-event-bridge"
|
2024-03-08 15:54:20 +01:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"lint": [
|
2024-09-21 14:06:11 +02:00
|
|
|
"vendor/bin/phpcs"
|
2024-03-08 15:54:20 +01:00
|
|
|
],
|
|
|
|
"lint:fix": [
|
|
|
|
"vendor/bin/phpcbf"
|
2024-09-21 14:12:56 +02:00
|
|
|
],
|
2024-09-25 11:27:17 +02:00
|
|
|
"prepare-test": [
|
2024-09-21 14:12:56 +02:00
|
|
|
"composer install",
|
2024-09-25 11:27:17 +02:00
|
|
|
"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",
|
2024-10-10 15:31:24 +02:00
|
|
|
"@test-events-manager",
|
2024-10-13 09:44:00 +02:00
|
|
|
"@test-wp-event-manager",
|
2024-10-18 13:54:53 +02:00
|
|
|
"@test-eventin",
|
|
|
|
"@test-modern-events-calendar-lite"
|
2024-09-25 11:27:17 +02:00
|
|
|
],
|
|
|
|
"test-debug": [
|
|
|
|
"@prepare-test",
|
2024-10-19 16:55:39 +02:00
|
|
|
"@test-gatherpress"
|
2024-09-25 11:27:17 +02:00
|
|
|
],
|
|
|
|
"test-vs-event-list": "phpunit --filter=vs_event_list",
|
|
|
|
"test-the-events-calendar": "phpunit --filter=the_events_calendar",
|
|
|
|
"test-gatherpress": "phpunit --filter=gatherpress",
|
2024-10-10 15:31:24 +02:00
|
|
|
"test-events-manager": "phpunit --filter=events_manager",
|
2024-10-13 09:44:00 +02:00
|
|
|
"test-wp-event-manager": "phpunit --filter=wp_event_manager",
|
|
|
|
"test-eventin": "phpunit --filter=eventin",
|
2024-10-18 13:54:53 +02:00
|
|
|
"test-modern-events-calendar-lite": "phpunit --filter=modern_events_calendar_lite",
|
2024-10-13 09:44:00 +02:00
|
|
|
"test-all": "phpunit"
|
2024-03-08 15:54:20 +01:00
|
|
|
}
|
|
|
|
}
|