-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
65 lines (65 loc) · 1.96 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "inpsyde/wp-translation-downloader",
"type": "composer-plugin",
"description": "Composer plugin to download translations from wordpress.org API.",
"license": "MIT",
"authors": [
{
"name": "Christian Leucht",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"ext-json": "*",
"composer-plugin-api": "^2.0",
"composer/installers": "^1.0 || ^2.0"
},
"require-dev": {
"behat/behat": "^v3.10.0",
"brain/monkey": "^2.6.1",
"mikey179/vfsstream": "^v1.6.10",
"composer/composer": "^2.3.7",
"inpsyde/php-coding-standards": "^1.0.0",
"phpunit/phpunit": "^9.6.0",
"vimeo/psalm": "^4.23.0",
"ondram/ci-detector": "^4.1.0"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"class": "Inpsyde\\WpTranslationDownloader\\Plugin"
},
"autoload": {
"psr-4": {
"Inpsyde\\WpTranslationDownloader\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Inpsyde\\WpTranslationDownloader\\Tests\\": "tests/"
}
},
"scripts": {
"behat": "@php ./vendor/bin/behat",
"cs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
"psalm": "@php ./vendor/vimeo/psalm/psalm --no-cache --output-format=compact --find-unused-psalm-suppress",
"tests": [
"@putenv XDEBUG_MODE=coverage",
"@php ./vendor/phpunit/phpunit/phpunit --coverage-text"
],
"tests:no-coverage": "@php ./vendor/phpunit/phpunit/phpunit --no-coverage",
"tests:unit": "@php ./vendor/phpunit/phpunit/phpunit --testsuite Unit",
"qa": [
"@cs",
"@psalm",
"@psalm",
"@tests:no-coverage",
"@behat"
]
}
}