forked from testcontainers/testcontainers-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.24 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
{
"name": "testcontainers/testcontainers",
"description": "Testcontainers implementation in PHP",
"license": "MIT",
"keywords": [
"docker",
"testcontainers"
],
"type": "library",
"authors": [
{
"name": "Soner Sayakci",
"email": "[email protected]"
}
],
"require": {
"php": ">= 8.1",
"symfony/process": "^5.0|^6.0|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"brianium/paratest": "^6.6",
"friendsofphp/php-cs-fixer": "^3.12",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/extension-installer": "^1.2",
"predis/predis": "^3.0 || ^2.0"
},
"autoload": {
"psr-4": {
"Testcontainers\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Testcontainers\\Tests\\": "tests/"
}
},
"scripts": {
"integration": "paratest tests/ --bootstrap vendor/autoload.php -f",
"cs": "php-cs-fixer fix --dry-run",
"cs:fix": "php-cs-fixer fix",
"phpstan": "phpstan analyse"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}