-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
51 lines (51 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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "ecomdev/mysql-to-jsonl",
"description": "Export/Import JSONL files as data for MySQL tables",
"type": "library",
"require": {
"php": "~8.2",
"amphp/amp": "~3.0",
"amphp/parallel": "~v2.3.1",
"revolt/event-loop": "~1.0",
"symfony/console": "~7.2",
"justinrainbow/json-schema": "^6.0",
"ext-pdo": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.0",
"phpunit/phpunit": "^11.5",
"brianium/paratest": "^7.7",
"ecomdev/testcontainers-magento-data": "~1.2"
},
"license": [
"MIT"
],
"keywords": [
"mysql",
"jsonl",
"backup"
],
"autoload": {
"psr-4": {
"EcomDev\\MySQL2JSONL\\": "src/"
}
},
"autoload-dev": {
"files": [
"tests/fixtures.php"
],
"psr-4": {
"EcomDev\\MySQL2JSONL\\": "tests/"
}
},
"scripts": {
"test": "XDEBUG_MODE=coverage paratest --coverage-text",
"test:single-threaded": "XDEBUG_MODE=coverage phpunit --coverage-text",
"format:check": "phpcs",
"format:write": "phpcbf"
},
"bin": [
"bin/mysql2jsonl"
],
"$schema": "https://getcomposer.org/schema.json"
}