-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.33 KB
/
Copy pathcomposer.json
File metadata and controls
49 lines (49 loc) · 1.33 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
{
"name": "k-kinzal/testcontainers-php",
"description": "PHP library for Testcontainers",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "k-kinzal",
"email": "keen.flag7803@logn.in"
}
],
"autoload": {
"psr-4": {
"Testcontainers\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": "~5.6 || ~7.0 || ~7.1 || ~7.2 || ~7.3 || ~7.4 || ~8.0 || ~8.1 || ~8.2 || ~8.3 || ~8.4 || ~8.5",
"ext-json": "*",
"ext-pdo": "*",
"symfony/process": "*",
"psr/log": "*"
},
"require-dev": {
"phpunit/phpunit": "5.7.27 || 6.5.14 || 7.5.20 || 8.5.52 || 9.6.34 || 10.5.63 || 11.5.55 || 12.5.16 || 13.1.0",
"friendsofphp/php-cs-fixer": "2.19.3 || 3.3.0 || 3.4.0 || 3.66.0 || 3.94.2"
},
"config": {
"allow-plugins": false
},
"scripts": {
"format": "php-cs-fixer fix",
"lint:php-cs-fixer": "php-cs-fixer fix --dry-run",
"lint": [
"@lint:php-cs-fixer"
],
"test": "phpunit --testsuite unit",
"coverage": "phpunit --coverage-text --testsuite unit",
"e2e": "phpunit --testsuite e2e"
}
}