-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
40 lines (40 loc) · 1.12 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
{
"name": "ecomdev/testcontainers-magento-data",
"description": "TestContainers for Magento data in integration/functional tests",
"type": "library",
"require": {
"php": "~8.2.0||~8.3.0",
"testcontainers/testcontainers": "^0.2.0"
},
"require-dev": {
"phpunit/phpunit": "^11.5",
"ext-pdo": "*",
"brianium/paratest": "^7.7",
"guzzlehttp/guzzle": "^7.0",
"squizlabs/php_codesniffer": "^3.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"EcomDev\\TestContainers\\MagentoData\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"EcomDev\\TestContainers\\MagentoData\\": "tests"
}
},
"scripts": {
"test": "paratest ./tests/ ",
"unit": "paratest ./tests/ --exclude-group=slow",
"format:check": "phpcs --standard=PSR12 ./src/ ./tests/",
"format:write": "phpcbf --standard=PSR12 ./src/ ./tests/"
},
"authors": [
{
"name": "Ivan Chepurnyi",
"email": "ivan.chepurnyi@ecomdev.org"
}
],
"minimum-stability": "stable"
}