Skip to content
This repository was archived by the owner on May 8, 2018. It is now read-only.

Commit bd32b3b

Browse files
committed
Adding Phing and PHPUnit to the dev env
1 parent 7657cdf commit bd32b3b

File tree

3 files changed

+497
-2
lines changed

3 files changed

+497
-2
lines changed

build.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="UTF-8" ?>
2+
<project name="phpsc-conf" basedir="." default="">
3+
4+
<target name="clean">
5+
<echo msg="Cleaning ..." />
6+
<exec command="find tmp/ -iname project*container.php -delete" />
7+
</target>
8+
9+
<target name="permissions">
10+
<echo msg="Setting permissions ..." />
11+
<chmod file="tmp/" mode="0777" />
12+
<chmod file="tmp/session" mode="0777" />
13+
<chmod file="tmp/proxy" mode="0777" />
14+
</target>
15+
16+
</project>

composer.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@
2828
"lcobucci/em-data-fixtures": "~1.0@stable",
2929
"doctrine/migrations": "*"
3030
},
31+
"require-dev": {
32+
"phpunit/phpunit": "3.7.*",
33+
"phing/phing": "*"
34+
},
3135
"autoload" : {
3236
"psr-0" : {
3337
"PHPSC\\Conference" : "src"

0 commit comments

Comments
 (0)