Phing is a project build system based on Apache ant. You can do anything with Phing that you could do with a traditional build system like Gnu make, and Phing's use of simple XML build files and extensible PHP "task" classes make it an easy-to-use and highly flexible build framework.

learn more… | top users | synonyms

0
votes
1answer
9 views

Phing copy contents of folder

I'm trying to move the contents of a folder to another destination in Phing. I can't directly download the contents from SVN, because they're in a zip. After the file is unzipped, I want to move the ...
0
votes
0answers
11 views

Rsync error with shared host

I'm getting the rsync protocol data stream error (12) when trying to deploy a site using Phing to a shared host (Site5). Interestingly, when I set dryrun="true" in the sync task, it works, but I ...
0
votes
0answers
7 views

Execute a phing target when a file has been modified

I have a filelist of about 25 files. I need to execute a certain phing target when the modification time of one of these files has changed. What is the best way to do this?
0
votes
0answers
11 views

Phing remove class calls

i need remove all class calls from exported files in php project, how to do it ? i need found declaration : function is a trait so in places where is use in class i have definition. so phing should ...
0
votes
0answers
20 views

get file content and assign to property in Phing

Is there a way to get a file content and assign to property for Phing? An equivalent to ant: <project name="foobar" default="foo"> <target name="foo"> <loadfile ...
0
votes
1answer
36 views

Error importing phing task file but the file is present there

2.4.12 build. i have placed the phing file inside /opt/phing and added lines to the .bashrc. export PHP_COMMAND=/usr/bin/php export PHING_HOME=/opt/phing export PHP_CLASSPATH=${PHING_HOME}/classes ...
0
votes
0answers
19 views

copy file with different name with phing

I wrote a script in Phing that copies files for two websites, but I can't do such thing like copy file with a name change. I want to copy this image into favicon.png. <copy ...
0
votes
0answers
28 views

Phing ftpdeploy error

I use Hudson + phing for build and deploy php application on server by ftp My build.xml: *** <!-- FILESETS --> <fileset dir="." id="files.site"> <include name="site/*" /> ...
0
votes
1answer
23 views

How to exclude base directory from phing/ant FileSet

I have a phing build target that I want to run on each directory directly under my project base. I'm using a foreach task with a fileset to run the target on each directory. The problem I'm having is ...
0
votes
0answers
5 views

Set name of output file for SmartyTask in Phing

I'm trying to compile a bunch of smarty files with Phing. The provided smarty task works fine, but I can't figure out how to set the outputfile appropriately, i.e. replace the .tpl extension of the ...
0
votes
0answers
40 views

Testing symfony2 application using phing PHPUnitTask

I'd like to run my Symfony2 app tests via phing PHPUnitTask instead of ExecTask since it supports a "configuration" attribute. before(working): <exec command="phpunit --log-junit ...
1
vote
0answers
28 views

phing input task within if strange behaviour

I'm encountering the following: <target name="test_something"> <if> <equals arg1="1" arg2="1" /> <then> <input ...
0
votes
1answer
46 views

travis-ci script

I'm trying to setup phing to work with travis-ci, but I can't get it to run a setup script to get all the dependencies installed. My .travis.yml file is: language: php php: - 5.2 script: ...
0
votes
0answers
31 views

Structuring zip contents differently with phing

Is there a way to create a different file structure inside a zip file in phing? In ant, I was able to provide a prefix to the <zipfileset> tag, but in phing the only tasks that I have for ...
1
vote
0answers
20 views

How to tell if tasks is master task or subcall/dependency in Phing

My idea is to make my Phing script talk, but I would like them to talk only once I've run the called task. Does anyone knows one to tell inside a Phing task if it's the parent caller or not ? Sample ...
0
votes
1answer
49 views

Phing pdosqlexec Segmentation Fault

when i try to execute this <pdosqlexec url="${pdo_driver}:host=${host};dbname=${db.name};" userid="${mysql_user}" password="${mysql_pwd}" encoding="utf8" ...
0
votes
1answer
89 views

Running Composer-installed tasks in Phing

I have a PHP app that is getting its dependencies installed with Composer. Composer puts the binaries in the bin folder. I want to use Phing to execute some tests on my code, but Phing isn't finding ...
0
votes
1answer
52 views

Iterating file structure in Phing and compressing with YUICompressor

I have a directory structure like so: -css ---subdir1 ------common.css ---subdir2 ------common.css ------custom.css ---subdir3 ------common.css ------styles.css I'm trying to loop each directory in ...
0
votes
0answers
31 views

Phing fails inside if statement

If i execute this in phing it works well: <copy todir="${dir.tmp}/${edition}/pdir"> <fileset refid="${edition}-p" /> ...
0
votes
0answers
48 views

jenkins running phing task cannot create folder inside /var/virtual running git clone

I am running Jenkins which in turn is running phing tasks. The phing task is simply git clone -b develop <ssh-url> <brand-new-folder-path> I checked that I can run ssh -t ...
0
votes
0answers
30 views

phing: rewrite repetitive git clone instructions into a loop in phing

<property name="plugindir" value="${environment.sitedir}current/${appdirname}/Plugin/" override="true" /> <!-- run git clone for plugin 1 --> <property name="plugin.name" ...
0
votes
1answer
21 views

Splitting Phing build file

I've got a huge phing build file here. Is there a way to put things like filesets into an external file used by the build.xml? Just need some organisation here.
0
votes
1answer
39 views

Accessing variables defined in unit testcase file in src file using phing

I have defined some variables in my test file then i call a function from my test file defined in src file and verify the result then While using phing it is not working, but if i use php or phpunit ...
1
vote
1answer
152 views

Phing Deployment - Git repo - Script

I want to be able to deploy files from my local system (git repo) to different servers. I have 3 branches. Mater,staging and develop. Each branch should deploy to corresponding server. My constants: ...
0
votes
0answers
85 views

Phing avoids Selenium browser settings in PHPUnit configuration

I setup up a phing project with two targets: the first runs phpunit test cases that includes selenium server as well and the second generates phpunit test reports using phpunitreport task. phpunit ...
0
votes
1answer
31 views

Prune old files in a directory with phing

This target works fine <target name="cleanlogs"> <echo msg="clean log do nothing !!!!not ready!!!!" /> <fileset dir="/var/www/myapp/log" id="deleteLogs"> <include ...
0
votes
0answers
59 views

Phing: gitclone incredibly slow

A part of my build.xml config is <gitclone repository="${repo}" targetPath="${directory}" /> The repository I am cloning is not big, around 30M and 10k of objects. If I do git clone in ...
0
votes
0answers
94 views

How to run Phing tasks from Eclipse (Zend Studio)?

Old thread : How to run Phing tasks from Eclipse? Phing is a strong tool to help teams in PHP industrialization. I'm using Ant tasks for anything I want to do directly from Eclipse. It's not a good ...
0
votes
0answers
48 views

calling phing as external tool causes error

When I call the phing as an external tool after saving a file it leads to this error: Errors running builder 'Integrated External Tool Builder' on project 'mySuperProject'. The file does not exist ...
0
votes
0answers
28 views

Phing include files based on file content tag

I'm trying to find a way to conditionally include file's from a SVN checkout into a specific target (based on a comment tag value). Context of the question: One unified code base in SVN Each file ...
0
votes
0answers
30 views

Setting a global db connection / parameter

I have a task that basically calls <pdosqlexec> which needs a database connection string. This task is called from multiple targets which are nested in other targets. Example <target ...
0
votes
0answers
56 views

Compass set permissions on generated CSS files

Very simple, when Compass encounters a new SCSS file it generates a new CSS file. Can I set default permissions for these, as by default it sets them without correct permissions for browsers to read ...
0
votes
0answers
79 views

Phing + DbDeploy, rolling back

I'm trying to figure out how to use Phing with DbDeploy to version control my databases. This How-To makes it pretty easy to understand. The only thing I don't get though: how do I actually use the ...
3
votes
2answers
320 views

Jenkins running phing exectask. Exectask uses ssh agent forwarding. Permission denied. How to resolve?

What went wrong I have a ubuntu 12.10 server. I installed Jenkins and Nginx in the same server. The /var/virtual where Nginx is supposed to server files from has a permission settings of ...
0
votes
1answer
79 views

how to evaluate junit.xml using phing

I am using phing to build my CakePHP web application. I want to have a phing target that goes along these lines: Run the test suite if there is even 1 failure, end the phing target if all okay, ...
0
votes
3answers
116 views

how to execute task in phing given double and single quotes

This is my command I wish to execute. php -r "apc_clear_cache(); apc_clear_cache('user'); apc_clear_cache('opcode');" This is my attempt in phing <exec command='php -r "apc_clear_cache(); ...
0
votes
1answer
77 views

Deploy only newer files with Phing

I'm using Phing as my build tool for a website i'm developing. I have a server running on localhost to test things on my own system, and i have a test environment on the server it's eventually going ...
0
votes
1answer
58 views

How to run Phing target based upon current version?

How can I create a Phing build script that will handle deployments, and migrate a project from it's current version to the latest version? Assuming that I have broken my deployment down into ...
0
votes
0answers
36 views

Load property file relative to current XML file

In my main build.xml I use <import file="${build.project}/common.xml"/> to import a common set of tasks, but in that common.xml it doesn't load the properties file unless I define a full ...
1
vote
1answer
109 views

Load a custom Phing task from the project directory

After reviewing the documentation for Phing on how to write custom tasks using PHP. I was wondering if it was possible to place the PHP source files in my project folder. The documentation says that ...
3
votes
2answers
52 views

Is it possible to perform a MySQL query using Phing and set the value as a property?

I'm new to Phing. I'd like to query a value in a MySQL database table, and have the value set as a property so that I can echo it out nicely to the screen. I can see that there is a PDOSQLExecTask ...
2
votes
1answer
63 views

Creating a Joomla Test and Deploy Build Script

I'm working on a Joomla Component. My IDE is Eclipse. And actually I want it to release it on the JED (Joomla Extension Directory). To get the deployment automatically done I found a nice ...
0
votes
0answers
37 views

Using Phing DataTypes

I am building an installer for our Codeigniter Applicaation. The database installation piece is a bit dynamic. There is custom data that gets added based on install preferences that need to be passed ...
0
votes
1answer
72 views

getting pid of spawned exec in phing

I am using phing and running selenium server via ExecTask. Sometimes I need to stop running server by killing its process. Is there a possibility in phing of getting PID of process spawned in ...
0
votes
1answer
288 views

symfony (propel) can't generate schema

I'm using symfony 1.4.19 and php 5.4.8. I think the problem appeared after upgrading php from 5.3 to 5.4... When I thy to generate schema.yml with a php symfony propel:build-schema I recieve an ...
0
votes
0answers
90 views

Phing, dbdeploy and psql

I try to use Phing for the migrations of my database. I followed the short tutorial at http://davedevelopment.co.uk/2008/04/14/how-to-simple-database-migrations-with-phing-and-dbdeploy.html However, ...
0
votes
1answer
64 views

Phing: get a filename without the extension

Given a Phing loop such as this <target name="lessc"> <exec command="lessc ${absolute-filename}" logoutput="false" output="${project.basedir}/public/assets/css/libraries/${filename}" /> ...
1
vote
1answer
205 views

PHPunit Comaptiablity issue with Zend

I have configured PHPUnit with Zend Framework. When I run the command phpunit --configuration phpunit.xml I receive the failure message like Declaration of ...
1
vote
0answers
80 views

Integrating Assetic with Phing and custom framework

Our product is developed by using an in house framework. We are using PHP (5.4) together with Twig as a tempting system and Phing for deployment. Lately, we were facing a problem to update our ...
0
votes
1answer
68 views

Phing and postgresql createdb

I have a task in phing where before tests I drop the database if exists and create it. This is run on Jenkins. I want to do it with createdb like this: <exec command="createdb my_database" /> ...

1 2 3 4 5