drupal/core/vendor/phpunit/phpunit-mock-objects
webchick 03da2949d7 Issue #2400407 by DuaelFr: Ensure vendor phpunit/phpunit-mock-objects is on latest stable release 2015-09-04 18:44:31 -07: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 #2400407 by DuaelFr: Ensure vendor phpunit/phpunit-mock-objects is on latest stable release 2015-09-04 18:44:31 -07:00
tests Issue #2400407 by DuaelFr: Ensure vendor phpunit/phpunit-mock-objects is on latest stable release 2015-09-04 18:44:31 -07: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 #2461863 by stefan.r: Upgrade PHPUnit to the latest stable release 2015-04-29 20:45:28 -07:00
CONTRIBUTING.md Issue #1916936 by msonnabaum: Add vendored copy of phpunit. 2013-02-14 13:45:50 -05:00
LICENSE Issue #2461863 by stefan.r: Upgrade PHPUnit to the latest stable release 2015-04-29 20:45:28 -07:00
README.md Issue #2400407 by DuaelFr: Ensure vendor phpunit/phpunit-mock-objects is on latest stable release 2015-09-04 18:44:31 -07: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 #2400407 by DuaelFr: Ensure vendor phpunit/phpunit-mock-objects is on latest stable release 2015-09-04 18:44:31 -07: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

Build Status Latest Stable Version

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.3:

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