From f037c38a1dcd7b72a9802e9d1bce8dd21657cd55 Mon Sep 17 00:00:00 2001 From: Ari Stathopoulos Date: Fri, 18 Oct 2019 22:05:05 +0300 Subject: [PATCH] add composer file --- composer.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..2f5c666 --- /dev/null +++ b/composer.json @@ -0,0 +1,26 @@ +{ + "name": "wplemon/control-wcag-auto-textcolor", + "type": "library", + "description": "Text Color control for the free version of the Gridd theme. Addon for the Kirki framework (v4.0 API).", + "keywords": ["wordpress", "customizer", "framework"], + "homepage": "https://aristath.github.io/kirki", + "license": "MIT", + "authors": [{ + "name": "Ari Stathopoulos", + "email": "aristath@gmail.com", + "homepage": "http://aristath.github.io", + "role": "Developer" + }], + "require": { + "php": ">=5.6", + "kirki-framework/control-base": "*", + "kirki-framework/field": "*", + "kirki-framework/url-getter": "*" + }, + "autoload": { + "psr-4": { + "WPLemon\\Control\\": "src/Control", + "WPLemon\\Field\\": "src/Field" + } + } +}