forked from phptest/phptest
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.2 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "phptest/phptest",
"description": "Really simple test harness for PHP",
"keywords": [
"functional",
"harness",
"test",
"testing",
"tests",
"unit"
],
"homepage": "https://phptest.github.io",
"version": "1.0.0-dev",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Andrew Lawson",
"homepage": "http://adlawson.com"
},
{
"name": "Public contributors",
"homepage": "https://github.com/phptest/phptest/graphs/contributors"
}
],
"bin": [
"bin/phptest"
],
"autoload": {
"files": [
"src/Api/Functional/inc/fn.php"
],
"psr-4": {
"PhpTest\\": "src/"
}
},
"require": {
"php": ">=5.4.0",
"symfony/config": "~2.5",
"symfony/console": "~2.5",
"symfony/dependency-injection": "~2.5"
},
"require-dev": {
"adlawson/timezone": "~1.0",
"mockery/mockery": "~0.9",
"phpunit/phpunit": "~4.0"
},
"replace": {
"phptest/cli": "self.version",
"phptest/service-container": "self.version"
}
}