drupal/core/vendor/phpunit/phpunit-mock-objects
Alex Pott 61cb3e3928 Issue #2375997 by Mile23, hussainweb, tstoeckler, omers: Avoid tying Drupal 8's composer.json to specific package commits 2015-02-03 10:18:21 +00:00
..
build Issue #2375997 by Mile23, hussainweb, tstoeckler, omers: Avoid tying Drupal 8's composer.json to specific package commits 2015-02-03 10:18:21 +00:00
src/Framework/MockObject Issue #2375997 by Mile23, hussainweb, tstoeckler, omers: Avoid tying Drupal 8's composer.json to specific package commits 2015-02-03 10:18:21 +00:00
tests Issue #2375997 by Mile23, hussainweb, tstoeckler, omers: Avoid tying Drupal 8's composer.json to specific package commits 2015-02-03 10:18:21 +00:00
.gitattributes Issue #1916936 by msonnabaum: Add vendored copy of phpunit. 2013-02-14 13:45:50 -05:00
.gitignore Issue #2114823 by alexpott, neclimdul, Xano, cosmicdreams, chx: Update PHPUnit to 4.x. 2014-06-14 22:29:44 -07:00
.travis.yml Issue #2375997 by Mile23, hussainweb, tstoeckler, omers: Avoid tying Drupal 8's composer.json to specific package commits 2015-02-03 10:18:21 +00:00
CONTRIBUTING.md Issue #1916936 by msonnabaum: Add vendored copy of phpunit. 2013-02-14 13:45:50 -05:00
LICENSE Issue #2114823 by alexpott, neclimdul, Xano, cosmicdreams, chx: Update PHPUnit to 4.x. 2014-06-14 22:29:44 -07:00
README.md Issue #2375997 by Mile23, hussainweb, tstoeckler, omers: Avoid tying Drupal 8's composer.json to specific package commits 2015-02-03 10:18:21 +00:00
build.xml Issue #2375997 by Mile23, hussainweb, tstoeckler, omers: Avoid tying Drupal 8's composer.json to specific package commits 2015-02-03 10:18:21 +00:00
composer.json Issue #2375997 by Mile23, hussainweb, tstoeckler, omers: Avoid tying Drupal 8's composer.json to specific package commits 2015-02-03 10:18:21 +00:00
phpunit.xml.dist Issue #2375997 by Mile23, hussainweb, tstoeckler, omers: Avoid tying Drupal 8's composer.json to specific package commits 2015-02-03 10:18:21 +00:00

README.md

Latest Stable Version Build Status

PHPUnit_MockObject

PHPUnit_MockObject is the default mock object library for PHPUnit.

Requirements

  • PHP 5.3.3 is required but using the latest version of PHP is highly recommended

Installation

To add PHPUnit_MockObject as a local, per-project dependency to your project, simply add a dependency on phpunit/phpunit-mock-objects to your project's composer.json file. Here is a minimal example of a composer.json file that just defines a dependency on PHPUnit_MockObject 2.0:

{
    "require": {
        "phpunit/phpunit-mock-objects": "2.1.*"
    }
}