forked from lucatume/wp-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
92 lines (92 loc) · 3.14 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"_hash": "11223344",
"name": "lucatume/wp-browser",
"type": "library",
"description": "WordPress extension of the PhpBrowser class.",
"keywords": [
"wordpress",
"codeception"
],
"homepage": "http://github.com/lucatume/wp-browser",
"license": "MIT",
"authors": [
{
"name": "theAverageDev (Luca Tumedei)",
"email": "luca@theaveragedev.com",
"homepage": "http://theaveragedev.com",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable" : true,
"require": {
"php": ">=5.6.0",
"ext-pdo": "*",
"ext-fileinfo": "*",
"ext-json": "*",
"antecedent/patchwork": "^2.0",
"codeception/codeception": "^2.5 || ^3.0 || ^4.0",
"dg/mysql-dump": "^1.3",
"mikehaertl/php-shellcommand": "^1.6",
"bordoni/phpass": "^0.3",
"mikemclin/laravel-wp-password": "~2.0.0",
"wp-cli/wp-cli": ">=2.0 <3.0.0",
"zordius/lightncandy": "^1.2",
"vria/nodiacritic": "^0.1.2"
},
"require-dev": {
"ext-sockets": "*",
"ext-pcntl": "*",
"erusev/parsedown": "^1.7",
"lucatume/codeception-snapshot-assertions": "^0.2",
"mikey179/vfsstream": "^1.6",
"victorjonsson/markdowndocs": "dev-master",
"gumlet/php-image-resize": "^1.6",
"vlucas/phpdotenv": "^3.0",
"wp-cli/wp-cli-bundle": "*"
},
"autoload": {
"psr-4": {
"Codeception\\": "src/Codeception",
"tad\\": "src/tad",
"lucatume\\WPBrowser\\": "src/"
},
"files": [
"src/tad/WPBrowser/utils.php",
"src/tad/WPBrowser/wp-polyfills.php"
]
},
"autoload-dev": {
"psr-4": {
"tad\\Test\\": "tests/_support/lib",
"Codeception\\": "tests/_data/classes/Codeception",
"lucatume\\WPBrowser\\Tests\\": "tests/_support"
},
"files": [
"tests/_support/functions.php"
]
},
"extra": {
"_hash": "484f861f69198089cab0e642f27e5653"
},
"suggest": {
"codeception/module-asserts:^1.0": "Codeception 4.0 compatibility.",
"codeception/module-phpbrowser:^1.0": "Codeception 4.0 compatibility; required by the WPBrowser module.",
"codeception/module-webdriver:^1.0": "Codeception 4.0 compatibility; required by the WPWebDriver module.",
"codeception/module-db:^1.0": "Codeception 4.0 compatibility; required by the WPDb module, PHP 5.6 compatible version.",
"codeception/module-filesystem:^1.0": "Codeception 4.0 compatibility; required by the WPFilesystem module.",
"codeception/module-cli:^1.0": "Codeception 4.0 compatibility; required by the WPCLI module.",
"codeception/util-universalframework:^1.0": "Codeception 4.0 compatibility; required by the WordPress framework module.",
"gumlet/php-image-resize": "To handle runtime image modification in the WPDb::haveAttachmentInDatabase method.",
"vlucas/phpdotenv:^4.0": "To manage more complex environment file based configuration of the suites."
},
"conflict": {
"codeception/module-asserts":">=2.0",
"codeception/module-phpbrowser":">=2.0",
"codeception/module-webdriver":">=2.0",
"codeception/module-db":">=2.0",
"codeception/module-filesystem":">=2.0",
"codeception/module-cli":">=2.0",
"codeception/util-universalframework":">=2.0"
}
}