29
0
mirror of https://github.com/joomla/joomla-cms.git synced 2024-06-20 11:05:08 +00:00

Updates as discussed

This commit is contained in:
wilsonge 2014-09-05 22:24:36 +01:00
parent 50e1781fdb
commit 02f956e9e5
3 changed files with 11 additions and 4 deletions

View File

@ -8,7 +8,7 @@ php:
before_script:
- composer self-update
- composer update
- composer install -dev
- pyrus install -f pear/PHP_CodeSniffer-1.5.4
- phpenv rehash
- mysql -e 'create database joomla_ut;'

View File

@ -54,6 +54,13 @@
</exec>
</target>
<target name="installdep" description="Install build dependencies using composer">
<exec executable="composer">
<arg value="update" />
<arg value="--no-dev" />
</exec>
</target>
<target name="phpmd" description="Generate pmd.xml using PHPMD">
<exec executable="phpmd">
<arg path="${joomlasource}" />

View File

@ -19,7 +19,7 @@
"phpmailer/phpmailer": "5.2.8",
"symfony/yaml": "2.*"
},
"require-dev": {
"phpunit/phpunit": "4.1.*"
}
"require-dev": {
"phpunit/phpunit": "4.1.*"
}
}