Replacing build status images

This commit is contained in:
Dan Cryer 2013-10-08 12:50:59 +01:00
parent adab6b20c0
commit 524a0cc58a
5 changed files with 333 additions and 1248 deletions

View file

@ -178,6 +178,11 @@ class Email implements \PHPCI\Plugin
protected function getEmailAddresses()
{
$addresses = array();
$committer = $this->phpci->getBuild()->getCommitterEmail();
if (isset($this->options['committer']) && !empty($committer)) {
$addresses[] = $committer;
}
if (isset($this->options['addresses'])) {
foreach ($this->options['addresses'] as $address) {

View file

@ -27,18 +27,20 @@
"ircmaxell/password-compat": "1.x",
"swiftmailer/swiftmailer" : "v5.0.0",
"symfony/yaml" : "2.2.x-dev",
"symfony/console" : "2.2.*"
"symfony/console" : "2.2.*",
"behat/behat": "*"
},
"suggest": {
"phpunit/phpunit" : "3.*",
"phpmd/phpmd" : "1.*",
"sebastian/phpcpd" : "1.*",
"squizlabs/php_codesniffer": "1.*",
"phpspec/phpspec" : "2.*",
"fabpot/php-cs-fixer" : "0.3.*@dev",
"phploc/phploc": "*",
"atoum/atoum":"*",
"jakub-onderka/php-parallel-lint": "dev-master"
"phpunit/phpunit": "PHP unit testing framework",
"phpmd/phpmd": "PHP Mess Detector",
"sebastian/phpcpd": "PHP Copy/Paste Detector",
"squizlabs/php_codesniffer": "PHP Code Sniffer",
"phpspec/phpspec": "PHP Spec",
"fabpot/php-cs-fixer": "PHP Code Sniffer Fixer",
"phploc/phploc": "PHP Lines of Code",
"atoum/atoum": "Atoum",
"jakub-onderka/php-parallel-lint": "Parallel Linting Tool",
"behat/behat": "Behat BDD Testing"
}
}

1554
composer.lock generated

File diff suppressed because it is too large Load diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB