-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Reimplemented table verification
Verifies indexes and not only table existence
- Loading branch information
Showing
5 changed files
with
592 additions
and
79 deletions.
There are no files selected for viewing
This file contains 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 characters
This file was deleted.
Oops, something went wrong.
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,43 @@ | ||
{ | ||
"name": "oblak/wp-plugin-installer", | ||
"description": "Simplifies the installation and activation of WordPress plugins", | ||
"authors": [ | ||
{ | ||
"name": "Sibin Grasic", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"license": "GPL-2.0-only", | ||
"version": "2.1.1", | ||
"type": "library", | ||
"require": { | ||
"php": ">= 8.0", | ||
"automattic/jetpack-constants": "^2", | ||
"oblak/admin-notice-manager": "^2", | ||
"woocommerce/action-scheduler": "^3.7" | ||
}, | ||
"require-dev": { | ||
"oblak/wordpress-coding-standard": "^1" | ||
}, | ||
"suggest": { | ||
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." | ||
"name": "oblak/wp-plugin-installer", | ||
"description": "Simplifies the installation and activation of WordPress plugins", | ||
"license": "GPL-2.0-only", | ||
"type": "library", | ||
"authors": [ | ||
{ | ||
"name": "Sibin Grasic", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"php": ">= 8.0", | ||
"automattic/jetpack-constants": "^2", | ||
"oblak/admin-notice-manager": "^2", | ||
"woocommerce/action-scheduler": "^3.7" | ||
}, | ||
"require-dev": { | ||
"ergebnis/composer-normalize": "^2.42", | ||
"oblak/wordpress-coding-standard": "^1" | ||
}, | ||
"suggest": { | ||
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Oblak\\WP\\": "src" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Oblak\\WP\\": "src" | ||
}, | ||
"files": [ | ||
"src/wppi-as-loader.php" | ||
] | ||
"files": [ | ||
"src/wppi-as-loader.php" | ||
] | ||
}, | ||
"config": { | ||
"allow-plugins": { | ||
"automattic/jetpack-autoloader": true, | ||
"dealerdirect/phpcodesniffer-composer-installer": true, | ||
"ergebnis/composer-normalize": true | ||
}, | ||
"config": { | ||
"classmap-authoritative": true, | ||
"optimize-autoloader": true, | ||
"sort-packages": true, | ||
"allow-plugins": { | ||
"automattic/jetpack-autoloader": true, | ||
"dealerdirect/phpcodesniffer-composer-installer": true | ||
} | ||
} | ||
"classmap-authoritative": true, | ||
"optimize-autoloader": true, | ||
"sort-packages": true | ||
} | ||
} |
Oops, something went wrong.