acirtautas / jqueryui-theme-modifier
jQuery UI theme modifier
dev-master
2015-07-15 20:58 UTC
This package is not auto-updated.
Last update: 2024-12-31 06:50:40 UTC
README
Simple tool to modify jQuery UI theme constants in Composer.
Installation / Usage
-
Download the
composer.phar
executable or use the installer.$ curl -sS https://getcomposer.org/installer | php
-
Create a composer.json defining your dependencies.
{ "require": { "acirtautas/jqueryui-theme-modifier": "dev-master" }, "config": { "jqueryui-theme-dir": "components/jquery-ui/themes/base", "jqueryui-theme-modify": { "cornerRadius":"6px" } }, "scripts": { "post-update-cmd": [ "modifier::modify" ], "post-install-cmd": [ "modifier::modify" ] } }
-
Run Composer:
php composer.phar install