This repository has been archived by the owner on Aug 20, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
64 lines (64 loc) · 1.59 KB
/
composer.json
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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "mrtnzlml/testbench",
"description": "Simple integration testing tool for Nette Framework applications",
"type": "library",
"license": [
"BSD-3-Clause",
"GPL-2.0",
"GPL-3.0"
],
"authors": [
{
"name": "Martin Zlámal",
"homepage": "http://zlml.cz/"
}
],
"require": {
"php": ">=5.6.0",
"kdyby/fake-session": "^2.0",
"nette/application": "^2.4 || ^v3.0",
"nette/bootstrap": "^2.4 || ^v3.0",
"nette/di": "^2.4 || ^v3.0",
"nette/safe-stream": "^2.3",
"nette/security": "^2.4 || ^v3.0",
"nette/tester": "^2.0",
"nette/utils": "^2.4 || ^v3.0"
},
"require-dev": {
"latte/latte": "^2.4",
"nette/forms": "^2.4 || ^v3.0",
"nette/robot-loader": "^2.4 || ^v3.0",
"tracy/tracy": "^2.4",
"kdyby/doctrine": "^3.1",
"kdyby/doctrine-cache": "^2.5",
"kdyby/doctrine-dbal-batchimport": "dev-master",
"kdyby/events": "^3.0",
"nette/database": "^2.4 || ^v3.0",
"zenify/doctrine-migrations": "^2.3"
},
"autoload": {
"psr-4": {
"Testbench\\": [
"src/",
"src/Traits/"
]
},
"files": [
"src/Testbench.php"
]
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"bin": [
"src/run-tests"
],
"suggest": {
"kdyby/doctrine": "Allows enhanced database tests using Doctrine",
"kdyby/doctrine-dbal-batchimport": "Allows SQL scripts import for Doctrine (required with kdyby/doctrine)",
"nette/database": "Allows enhanced database tests using Nette\\Database",
"zenify/doctrine-migrations": "Migrate database to the fresh state"
}
}