wp-plugin-installer/composer.json

48 lines
1.2 KiB
JSON
Raw Permalink Normal View History

2022-10-23 17:52:37 +02:00
{
"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": "sibin.grasic@oblak.studio"
}
],
"require": {
"php": ">= 8.0",
"automattic/jetpack-constants": "^2 | ^3",
2024-11-01 12:58:29 +01:00
"woocommerce/action-scheduler": "^3.7",
2025-01-14 14:11:19 +01:00
"x-wp/admin-notice-manager": "^1.0",
"x-wp/helper-traits": "^1.18"
},
"require-dev": {
2024-11-01 12:58:29 +01:00
"oblak/wordpress-coding-standard": "^1",
"wp-cli/wp-cli": "^2.11"
},
"suggest": {
"automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
},
"autoload": {
"psr-4": {
"Oblak\\WP\\": "src"
},
"files": [
"src/wppi-as-loader.php"
]
},
"config": {
2024-11-01 12:58:29 +01:00
"platform": {
"php": "8.0"
},
"allow-plugins": {
"automattic/jetpack-autoloader": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
2022-10-23 17:52:37 +02:00
},
"classmap-authoritative": true,
"optimize-autoloader": true,
"sort-packages": true
}
2022-10-23 17:52:37 +02:00
}