Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 600 Bytes

README.md

File metadata and controls

32 lines (22 loc) · 600 Bytes

Puppet module: phpunit

Puppet module for installing the PHPUnit unit testing framework's PHAR package.

Made by Andrew Kandels

GitHub: https://github.com/andrew-kandels/puppet-phpunit

Released under the terms of the BSD-2 license.

Simple Usage

    class { 'phpunit': }

Advanced Usage (complete options list)

    class { 'phpunit':
        phar_uri     => 'https://phar.phpunit.de/phpunit.phar',
        install_path => '/usr/local/bin/phpunit',
    }

Uninstalling PHPUnit

    class { 'phpunit':
        ensure => absent,
    }