-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
42 lines (42 loc) · 1.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
{
"name": "tarantool/phpunit-extras",
"description": "A collection of helpers for PHPUnit to ease testing Tarantool libraries.",
"keywords": ["tarantool", "phpunit", "annotations", "assertions", "expectations", "extensions", "mocking"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Eugene Leonovich",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2.5|^8",
"composer/package-versions-deprecated": "1.11.99.5",
"composer/semver": "^3.3",
"rybakit/phpunit-extras": "^0.2.4",
"symfony/expression-language": "^3.3|^4|^5|^6",
"tarantool/client": "^0.10"
},
"require-dev": {
"php": "^7.2.5|^8",
"friendsofphp/php-cs-fixer": "^2.19",
"vimeo/psalm": "^3.9|^4"
},
"autoload": {
"psr-4": {
"Tarantool\\PhpUnit\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tarantool\\PhpUnit\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
}
}