| @@ -2,20 +2,27 @@ | ||
| 2 | 2 | /** |
| 3 | 3 | * Plugin Name: SQLite Database Integration |
| 4 | 4 | * Description: SQLite database driver drop-in. |
| 5 | 5 | * Author: The WordPress Team |
| 6 | - * Version: 2.1.14 | |
| 7 | - * Requires PHP: 7.0 | |
| 6 | + * Version: 3.0.2 | |
| 7 | + * Requires PHP: 7.2 | |
| 8 | + * Network: true | |
| 9 | + * License: GPL-2.0-or-later | |
| 10 | + * License URI: https://www.gnu.org/licenses/gpl-2.0.html | |
| 8 | 11 | * Textdomain: sqlite-database-integration |
| 9 | 12 | * |
| 10 | 13 | * This feature plugin allows WordPress to use SQLite instead of MySQL as its database. |
| 11 | - * | |
| 12 | - * @package wp-sqlite-integration | |
| 13 | 14 | */ |
| 14 | 15 | |
| 16 | +/** | |
| 17 | + * Load the "SQLITE_DRIVER_VERSION" constant. | |
| 18 | + * This constant needs to be updated on plugin release! | |
| 19 | + */ | |
| 20 | +require_once __DIR__ . '/wp-includes/database/version.php'; | |
| 21 | + | |
| 15 | 22 | define( 'SQLITE_MAIN_FILE', __FILE__ ); |
| 16 | 23 | |
| 17 | -require_once __DIR__ . '/php-polyfills.php'; | |
| 24 | +require_once __DIR__ . '/capabilities.php'; | |
| 18 | 25 | require_once __DIR__ . '/admin-page.php'; |
| 19 | 26 | require_once __DIR__ . '/activate.php'; |
| 20 | 27 | require_once __DIR__ . '/deactivate.php'; |
| 21 | 28 | require_once __DIR__ . '/admin-notices.php'; |