Skip to content

Commit

Permalink
fix: Reimplemented table verification
Browse files Browse the repository at this point in the history
Verifies indexes and not only table existence
  • Loading branch information
seebeen committed Feb 1, 2024
1 parent ef18640 commit 0bb0c19
Show file tree
Hide file tree
Showing 5 changed files with 592 additions and 79 deletions.
3 changes: 0 additions & 3 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,5 @@ indent_size = 2
[*.js]
indent_size = 2

[{composer.json,package.json}]
indent_size = 4

[*.md]
trim_trailing_whitespace = false
34 changes: 0 additions & 34 deletions CHANGELOG.md

This file was deleted.

77 changes: 39 additions & 38 deletions composer.json
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
}
}
Loading

0 comments on commit 0bb0c19

Please sign in to comment.