forked from Codeception/Codeception
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
98 lines (96 loc) · 3.32 KB
/
composer.json
File metadata and controls
98 lines (96 loc) · 3.32 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
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
93
94
95
96
97
98
{
"name":"codeception/codeception",
"description":"BDD-style testing framework",
"keywords":["BDD", "acceptance testing", "functional testing", "unit testing", "tdd"],
"homepage":"https://codeception.com/",
"type":"library",
"license":"MIT",
"authors":[
{
"name":"Michael Bodnarchuk",
"email":"davert.ua@gmail.com",
"homepage":"https://codeception.com"
}
],
"minimum-stability": "RC",
"require": {
"php": "^8.0",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"behat/gherkin": "^4.6.2",
"codeception/lib-asserts": "2.0.*@dev",
"codeception/stub": "^3.7 | ^4.0",
"phpunit/phpunit": "^9.5",
"phpunit/php-code-coverage": "^9.2",
"phpunit/php-text-template": "^2.0",
"phpunit/php-timer": "^5.0.3",
"sebastian/comparator": "^4.0.5",
"sebastian/diff": "^4.0.3",
"symfony/console": ">=4.4.24 <7.0",
"symfony/css-selector": ">=4.4.24 <7.0",
"symfony/event-dispatcher": ">=4.4.24 <7.0",
"symfony/finder": ">=4.4.24 <7.0",
"symfony/yaml": ">=4.4.24 <7.0",
"symfony/var-dumper": ">=4.4.24 < 7.0",
"psy/psysh": "^0.11.2"
},
"require-dev": {
"ext-simplexml": "*",
"codeception/lib-innerbrowser": "*@dev",
"codeception/lib-web": "^1.0",
"codeception/module-asserts": "*@dev",
"codeception/module-cli": "*@dev",
"codeception/module-db": "*@dev",
"codeception/module-filesystem": "*@dev",
"codeception/module-phpbrowser": "*@dev",
"codeception/util-universalframework": "*@dev",
"symfony/process": ">=4.4.24 <7.0",
"symfony/dotenv": ">=4.4.24 <7.0",
"vlucas/phpdotenv": "^5.1"
},
"conflict": {
"codeception/lib-innerbrowser": "<3.1",
"codeception/module-phpbrowser": "<2.5",
"codeception/module-filesystem": "<3.0"
},
"suggest": {
"ext-simplexml": "For loading params from XML files",
"vlucas/phpdotenv": "For loading params from .env files",
"symfony/dotenv": "For loading params from .env files",
"codeception/specify": "BDD-style code blocks",
"codeception/verify": "BDD-style assertions",
"symfony/phpunit-bridge": "For phpunit-bridge support",
"stecman/symfony-console-completion": "For BASH autocompletion"
},
"replace": {
"codeception/phpunit-wrapper": "*"
},
"autoload": {
"classmap": [
"src/PHPUnit/TestCase.php"
],
"files": [
"functions.php"
],
"psr-4": {
"Codeception\\": "src/Codeception",
"Codeception\\Extension\\": "ext"
}
},
"autoload-dev": {
"classmap": [
"tests/cli/_steps",
"tests/data/app/data.php",
"tests/data/claypit/tests/_data",
"tests/data/fail_dependencies",
"tests/data/register_command/examples",
"tests/data/DummyClass.php",
"tests/data/DummyOverloadableClass.php",
"tests/unit/Codeception/Command/BaseCommandRunner.php",
"tests/unit/Codeception/Util/MockAutoload.php",
"tests/unit/Codeception/Util/ReflectionTestClass.php"
]
},
"bin":["codecept"]
}