PluginProbe
BeyondWords – AI audio for publishers / 7.1.0
BeyondWords – AI audio for publishers v7.1.0
7.1.0 trunk 4.0.0 4.0.1 4.0.2 4.0.3 4.0.4 4.0.5 4.0.6 4.1.0 4.1.1 4.1.2 4.2.0 4.2.1 4.2.2 4.2.3 4.2.4 4.3.0 4.4.0 4.5.0 4.5.1 4.6.0 4.6.1 4.6.2 4.7.0 All 43 releases
speechkit / speechkit.php

speechkit.php in BeyondWords – AI audio for publishers 7.1.0, at speechkit.php

39 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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