summaryrefslogtreecommitdiff
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json41
1 files changed, 41 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..e2628ee
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,41 @@
+{
+ "name": "drogueronin/draggable-post-order",
+ "version": "1.0.0",
+ "type": "wordpress-plugin",
+ "authors": [
+ {
+ "name": "Daniel Weipert",
+ "email": "code@drogueronin.de"
+ }
+ ],
+ "require": {
+ "php": ">=7.4"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "7.*",
+ "squizlabs/php_codesniffer": "^3.5",
+ "phpcompatibility/phpcompatibility-wp": "^2.1",
+ "dealerdirect/phpcodesniffer-composer-installer": "^0.7",
+ "wp-coding-standards/wpcs": "^2.3"
+ },
+ "scripts": {
+ "test:unit": "phpunit",
+ "test:cs": "phpcs"
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "archive": {
+ "exclude": [
+ "*", ".*",
+ "!/build",
+ "!/src",
+ "!/vendor",
+ "!/composer.json",
+ "!/draggable-post-order.php",
+ "!/LICENSE", "!/readme.txt"
+ ]
+ }
+}