From 0d1da4356173e926fdcac42462daa4fcb7617109 Mon Sep 17 00:00:00 2001 From: Daniel Weipert Date: Mon, 21 Dec 2020 16:11:17 +0100 Subject: Initial commit --- composer.json | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 composer.json (limited to 'composer.json') 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" + ] + } +} -- cgit v1.2.3