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
10 views

How can i make a auto accept in phing?

I'm using phing for deployment. One of my target build as test version: <exec command="php app/console doctrine:schema:drop --force" dir=""/> <exec command="php app/console ...
0
votes
0answers
9 views

Jenkins Phing Plugin - Resource Temporarily Unavailable

I have just started getting Jenkins setup with Phing as the build tool. Although I have used Jenkins before, I'm new to Phing. I have a project setup in Jenkins that has a Mercurial Repository setup ...
0
votes
1answer
3 views

Phing - imported build file does not execute

New to phing, I feel dumb but when I import one build file into another. The imported build file does not execute. I must have something wrong (note that $ phing --buildfile imported.xml runs fine). ...
-1
votes
0answers
21 views

What are the advantages of using Phing over Bash to deploy a website? [closed]

At my office, we use Phing to deploy websites. I'm wondering if anyone knows what advantages there are to using Phing over Bash? All I can see is that it makes life far harder: I have to write my ...
0
votes
0answers
10 views

Phing looking in a directory based off a regular expression

This is essentially what I'd like to do: <foreach param="file" absparam="absname" target="subtask2"> <fileset dir="../commands/*/view"> <include name="*.html"/> ...
0
votes
0answers
14 views

Get a return value from phing ad-hoc task

Is there any way to get a return value from a phing ad-hoc task? For example, I'm trying to get the version number from a json string in a file as follows: <target name="get-app-version"> ...
0
votes
1answer
20 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
14 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
1answer
18 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
12 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
1answer
31 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
63 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
25 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
39 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
43 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
7 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
60 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
38 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
59 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
33 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
22 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
56 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
95 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
64 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
40 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
57 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
39 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
28 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
41 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
218 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
93 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
39 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
70 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
104 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
52 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
35 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
32 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
64 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
88 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
357 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
92 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
137 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
85 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
59 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
40 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
129 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
58 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
66 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
39 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 ...
4
votes
2answers
180 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 ...

1 2 3 4 5