Download the PHP package thinkingmedia/phing without Composer
On this page you can find all versions of the php package thinkingmedia/phing. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download thinkingmedia/phing
More information about thinkingmedia/phing
Files in thinkingmedia/phing
Package phing
Short Description A collection of custom tasks for Phing
License MIT
Informations about the package phing
ThinkingMedia/Phing
ThinkingMedia/Phing is a collection of custom Phing tasks that we use daily on our web development projects.
Usage
ThinkingMedia/Phing are Phing custom tasks implemented with PSR-0 namespaces and installed in your project via composer. You need to include the composer autoloader and include the ThinkingMedia/Phing project path before you can use them.
Here is an empty build.xml
file to get you started.
<?xml version="1.0"?>
<project name="YourProjectName" default="build">
<php expression="include('vendor/autoload.php')"/>
<includepath classpath="vendor/thinkingmedia/phing/src"/>
<target name="build">
</target>
</project>
Tasks
DepsTask
Handles executing Google's Closure Dependency generator for JavaScript.
Name | Type | Description | Default | Required |
---|---|---|---|---|
output | string | The relative output path for the deps.js file. | n/a | Yes |
library | string | The relative location to the closure library | n/a | Yes |
prefix | string | A URL prefix to load JS files relative to goog/base.js | n/a | Yes |
Installation
Install using composer:
composer require thinkingmedia/phing
Unit Tests
For running unit tests you need phpunit. After installing, you can run the unit test suite by running:
$ phpunit
Requirements
- ThinkingMedia/Phing requires Phing 2.x or above, but is not listed as a dependency in composer.
Submitting bugs and feature requests
Bugs and feature requests are tracked on GitHub
Author
Mathew Foscarini - http://www.thinkingmedia.ca
See also the list of contributors which participated in this project.
License
Phing is licensed under the MIT License - see the LICENSE
file for details.