Skip to content
This repository was archived by the owner on Feb 20, 2023. It is now read-only.

Commit b97874a

Browse files
Merge pull request #99 from claylo/master
2 parents fc56ffb + f3faff7 commit b97874a

File tree

2 files changed

+60
-0
lines changed

2 files changed

+60
-0
lines changed

composer.json

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"name": "phpunit/phpunit-mock-objects",
3+
"description": "Mock Object library for PHPUnit",
4+
"type": "library",
5+
"keywords": [
6+
"xunit",
7+
"mock"
8+
],
9+
"homepage": "http://www.phpunit.de/",
10+
"license": "BSD-3-Clause",
11+
"authors": [
12+
{
13+
"name": "Sebastian Bergmann",
14+
"email": "sb@sebastian-bergmann.de",
15+
"role": "lead"
16+
}
17+
],
18+
"version": "1.2.0RC5",
19+
"time": "2012-09-10",
20+
"support": {
21+
"issues": "https://github.com/sebastianbergmann/phpunit-mock-objects/issues",
22+
"irc": "irc://irc.freenode.net/phpunit"
23+
},
24+
"require": {
25+
"php": ">=5.3.3",
26+
"phpunit/php-text-template": ">=1.1.1",
27+
"ext-reflection": "*",
28+
"ext-spl": "*"
29+
},
30+
"suggest": {
31+
"ext-soap": "*"
32+
},
33+
"autoload": {
34+
"files": [
35+
"PHPUnit/Framework/MockObject/Autoload.php"
36+
]
37+
},
38+
"include-path": [
39+
""
40+
]
41+
}

package-composer.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "phpunit/phpunit-mock-objects",
3+
"keywords": [ "xunit", "mock" ],
4+
"license": "BSD-3-Clause",
5+
"homepage": "http://www.phpunit.de/",
6+
"dependency_map": {
7+
"pear.phpunit.de/Text_Template": "phpunit/php-text-template"
8+
},
9+
"support": {
10+
"issues": "https://github.com/sebastianbergmann/phpunit-mock-objects/issues",
11+
"irc": "irc://irc.freenode.net/phpunit"
12+
},
13+
"autoload": {
14+
"files": [ "PHPUnit/Framework/MockObject/Autoload.php" ]
15+
},
16+
"include_path": [
17+
""
18+
]
19+
}

0 commit comments

Comments
 (0)