diff options
Diffstat (limited to 'manifests')
| -rw-r--r-- | manifests/utils/development/php.pp | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/manifests/utils/development/php.pp b/manifests/utils/development/php.pp index f072b43..6145248 100644 --- a/manifests/utils/development/php.pp +++ b/manifests/utils/development/php.pp @@ -2,4 +2,12 @@ class nodo::utils::development::php {    package { [ 'php5-xdebug', 'phpunit' ]:      ensure  => present,    } + +  # Jessie onwards +  package { 'phpunit-git': +    ensure => $::lsbdistcodename ? { +      'wheezy' => absent, +      default  => present, +    }, +  }  } | 
