forked from honzavaclavik/testbench
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 1.69 KB
/
composer.json
File metadata and controls
66 lines (66 loc) · 1.69 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "honzavaclavik/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": "^7.1 || ^7.2",
"kdyby/fake-session": "^2.1",
"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",
"nettrine/migrations": "^0.3",
"nextras/migrations": "dev-master"
},
"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",
"nettrine/migrations": "Migrate database to the fresh state",
"nextras/migrations": "Migrate database to the fresh state"
}
}