src
1 month ago
vendor-prefixed
3 months ago
composer.json
1 month ago
email-editor.php
1 year ago
license.txt
10 months ago
email-editor.php
24 lines
| 1 | <?php |
| 2 | /** |
| 3 | * This file is part of the WooCommerce Email Editor package |
| 4 | * |
| 5 | * @package Automattic\WooCommerce\EmailEditor |
| 6 | */ |
| 7 | |
| 8 | /** |
| 9 | * Plugin Name: Email Editor |
| 10 | * Plugin URI: https://woocommerce.com/ |
| 11 | * Description: An empty email-editor definition file to setup wp-env test env. |
| 12 | * Version: 0.0.1 |
| 13 | * Author: Automattic |
| 14 | * Author URI: https://woocommerce.com |
| 15 | * Requires at least: 6.7 |
| 16 | * Requires PHP: 7.4 |
| 17 | */ |
| 18 | |
| 19 | $autoload_entry_point = __DIR__ . '/vendor/autoload.php'; |
| 20 | if ( file_exists( $autoload_entry_point ) ) { |
| 21 | require_once $autoload_entry_point; |
| 22 | } |
| 23 | // When the package is distributed as part of WooCommerce core, it will provide autoloading of necessary dependencies. |
| 24 |