| 1 |
<?php |
| 2 |
|
| 3 |
declare( strict_types = 1 ); |
| 4 |
|
| 5 |
// phpcs:disable |
| 6 |
/** |
| 7 |
* |
| 8 |
* @link https://beyondwords.io |
| 9 |
* @since 3.0.0 |
| 10 |
* @package Beyondwords\Wordpress |
| 11 |
* |
| 12 |
* @wordpress-plugin |
| 13 |
* Plugin Name: BeyondWords - AI audio for publishers |
| 14 |
* Plugin URI: https://beyondwords.io |
| 15 |
* Description: Turn WordPress articles into audio as you publish, with tools for distribution, monetization, and analytics. |
| 16 |
* Author: BeyondWords |
| 17 |
* Author URI: https://beyondwords.io |
| 18 |
* Version: 7.1.0 |
| 19 |
* License: GPL-2.0+ |
| 20 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt |
| 21 |
* Text Domain: speechkit |
| 22 |
* Domain Path: /languages |
| 23 |
* Requires PHP: 8.0 |
| 24 |
* Requires at least: 6.6 |
| 25 |
*/ |
| 26 |
// phpcs:enable |
| 27 |
|
| 28 |
defined( 'ABSPATH' ) || exit; |
| 29 |
|
| 30 |
require_once plugin_dir_path( __FILE__ ) . 'vendor/autoload.php'; |
| 31 |
|
| 32 |
// phpcs:disable |
| 33 |
define('BEYONDWORDS__PLUGIN_VERSION', '7.1.0'); |
| 34 |
define('BEYONDWORDS__PLUGIN_DIR', plugin_dir_path(__FILE__)); |
| 35 |
define('BEYONDWORDS__PLUGIN_URI', plugin_dir_url(__FILE__)); |
| 36 |
// phpcs:enable |
| 37 |
|
| 38 |
BeyondWords\Core\Plugin::init(); |
| 39 |
|