jeancarloem/phpunit-skeleton-builder

Tool that can generate skeleton test classes from production code classes and vice versa

2.0.1 2014-05-14 17:42 UTC

This package is auto-updated.

Last update: 2024-03-29 04:26:24 UTC


README

Latest Stable Version Total Downloads Latest Unstable Version License

phpunit-skelgen-builder is a tool that can generate skeleton test classes from production code classes and vice versa.

See the changelog here from the sebastianbergmann/phpunit-skeleton-generator

Installation with Composer

Simply add a dependency on jeancarloem/phpunit-skeleton-builder to your project's composer.json file if you use Composer to manage the dependencies of your project. Here is a minimal example of a composer.json file that just defines a development-time dependency on jeancarloem/phpunit-skeleton-builder:

{
    "require-dev": {
        "jeancarloem/phpunit-skeleton-builder": "*"
    }
}

For a system-wide installation via Composer, you can run:

composer require --dev "jeancarloem/phpunit-skeleton-builder=*"

Or

composer global require "jeancarloem/phpunit-skeleton-builder=*"

Make sure you have ~/.composer/vendor/bin/ in your path.