Created
October 21, 2025 14:13
-
-
Save sc0ttkclark/0ff68c40a30fdf0e5e681aa28ec3aa66 to your computer and use it in GitHub Desktop.
Revisions
-
sc0ttkclark created this gist
Oct 21, 2025 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ <?php /** * Plugin Name: FAIR - Federated and Independent Repositories * Description: Make your site more FAIR. * Version: 1.0.0 * Author: FAIR Contributors * License: GPLv2 * Requires at least: 5.4 * Requires PHP: 7.4 * Text Domain: fair * Domain Path: /fair-plugin/languages */ add_action( 'plugins_loaded', static function() { if ( ! defined( '\FAIR\VERSION' ) ) { require_once __DIR__ . '/fair-plugin/plugin.php'; } } );