forked from NBrowserKit/NBrowserKit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (37 loc) · 850 Bytes
/
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
{
"name": "n-browser-kit/n-browser-kit",
"description": "Implementation of Symfony's BrowserKit for Nette applications.",
"homepage": "http://github.com/VaclavSir/NBrowserKit",
"type": "library",
"license": ["MIT"],
"authors": [
{
"name": "Václav Šír",
"homepage": "http://github.com/VaclavSir"
},
{
"name": "Jan Mikeš",
"homepage": "http://github.com/JanMikes"
}
],
"require": {
"php": ">=7.1",
"nette/application": "^3.2",
"nette/bootstrap": "^3.2",
"nette/caching": "^3.2",
"nette/di": "^3.1",
"nette/http": "^3.2",
"tracy/tracy": "^2.10",
"symfony/browser-kit": "^5.0 || ^6.0"
},
"require-dev": {
"nette/tester": "^2.0",
"mockery/mockery": "^1.0"
},
"suggest": {
"symfony/css-selector": "To use CSS selectors with DomCrawler."
},
"autoload": {
"psr-4": {"NBrowserKit\\": "src/"}
}
}