mashup-mill/phing-tasks

dev-master 2015-04-22 17:41 UTC

This package is not auto-updated.

Last update: 2024-04-27 15:04:37 UTC


README

Collection of PHING tasks

Loading via composer

"require-dev": {
    "mashup-mill/phing-tasks": "dev-master"
}

Importing tasks

<import file="./vendor/mashup-mill/phing-tasks/src/main/resources/tasks.xml"/>

YuiCompressorTask

<yuic jar="./vendor/bin/yuicompressor.jar" 
      cacheFile="${project.target}/yuic.cache" 
      targetDir="${project.target}/min">
    <fileset dir="${project.target}">
        <include name="**/*.css" />
        <exclude name="**/*.min.css" />
    </fileset>
</yuic>