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

Commit f3faff7

Browse files
author
Clay Loveless
committed
composer support. Added package-composer.json for package2composer script.
1 parent e958bf1 commit f3faff7

File tree

2 files changed

+39
-24
lines changed

2 files changed

+39
-24
lines changed

composer.json

Lines changed: 20 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -3,43 +3,39 @@
33
"description": "Mock Object library for PHPUnit",
44
"type": "library",
55
"keywords": [
6-
"mocks",
7-
"phpunit",
86
"xunit",
9-
"testing"
7+
"mock"
108
],
119
"homepage": "http://www.phpunit.de/",
10+
"license": "BSD-3-Clause",
1211
"authors": [
1312
{
1413
"name": "Sebastian Bergmann",
15-
"email": "sebastian@phpunit.de",
16-
"homepage": "http://www.phpunit.de/"
14+
"email": "sb@sebastian-bergmann.de",
15+
"role": "lead"
1716
}
1817
],
19-
"license": "BSD-3-Clause",
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+
},
2024
"require": {
2125
"php": ">=5.3.3",
26+
"phpunit/php-text-template": ">=1.1.1",
2227
"ext-reflection": "*",
23-
"ext-spl": "*",
24-
"phpunit/php-text-template": ">=1.1.1"
28+
"ext-spl": "*"
2529
},
2630
"suggest": {
27-
"ext-soap": "ext/SOAP"
28-
},
29-
"config": {
30-
"bin-dir": "bin"
31+
"ext-soap": "*"
3132
},
3233
"autoload": {
33-
"psr-0": {
34-
"PHPUnit_Framework_MockObject_": ""
35-
},
36-
"files": ["PHPUnit/Framework/MockObject/Autoload.php"]
34+
"files": [
35+
"PHPUnit/Framework/MockObject/Autoload.php"
36+
]
3737
},
38-
"minimum-stability": "dev",
39-
"extra": {
40-
"branch-alias": {
41-
"dev-master": "1.2.x-dev"
42-
}
43-
}
44-
45-
}
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)