mirror of
https://gh.wpcy.net/https://github.com/fairpm/did-manager.git
synced 2026-06-19 02:03:36 +08:00
Update test to extend on lint recommendations. Remove Wordpress specific examples and tests
26 lines
578 B
PHP
26 lines
578 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
const TEST_PLUGIN_FIXTURE = true;
|
|
|
|
/**
|
|
* Plugin Name: Test Plugin
|
|
* Plugin URI: https://example.com/test-plugin
|
|
* Description: A test plugin for fixture testing.
|
|
* Version: 1.0.0
|
|
* Author: Fixture Author
|
|
* Author URI: https://fixture.example.com
|
|
* Text Domain: test-plugin
|
|
* Domain Path: /languages
|
|
* Requires at least: 5.8
|
|
* Requires PHP: 7.4
|
|
* License: GPL-2.0+
|
|
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
|
* Tags: fixture, testing
|
|
* Plugin ID: did:plc:fixture123
|
|
*
|
|
* @package TestPlugin
|
|
*/
|
|
|
|
// Silence is golden.
|