-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (32 loc) · 1.06 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
{
"name": "wp-cli/sql-transform",
"description": "Transforms to import/export/dump SQL across multiple dialects",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"WP_CLI\\SqlTransform\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WP_CLI\\SqlTransform\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Alain Schlesser",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"yoast/phpunit-polyfills": "^2.0",
"mikey179/vfsstream": "1.6.11"
},
"scripts": {
"test": "(phpunit --atleast-version 10.5 > /dev/null && phpunit -c phpunit10.xml.dist --no-coverage); (phpunit --atleast-version 10.5 > /dev/null || phpunit -c phpunit.xml.dist --no-coverage)",
"coverage": "(phpunit --atleast-version 10.5 > /dev/null && phpunit -c phpunit10.xml.dist); (phpunit --atleast-version 10.5 > /dev/null || phpunit -c phpunit.xml.dist)"
}
}