-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
70 lines (70 loc) · 2.11 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
66
67
68
69
70
{
"name": "inpsyde/gutenberg-versions-manager",
"description": "A lib that activate/deactivate a Gutenberg version depending on the Theme being activate",
"type": "library",
"license": "GPL-v2-or-later",
"minimum-stability": "dev",
"authors": [
{
"name": "inpsyde",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"inpsyde/wp-app-container": "^1 || ^2",
"inpsyde/gutenberg-versions-mirror": "dev-main"
},
"require-dev": {
"vimeo/psalm": "^5",
"inpsyde/php-coding-standards": "^2",
"phpunit/phpunit": "^9.5",
"brain/monkey": "^2.6",
"mikey179/vfsstream": "^2.0",
"mockery/mockery": "^1.5",
"roots/wordpress-no-content": "~6.2.0"
},
"autoload": {
"psr-4": {
"Inpsyde\\GutenbergVersionManager\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Inpsyde\\GutenbergVersionManager\\Tests\\": "tests/src",
"Inpsyde\\GutenbergVersionManager\\Tests\\Unit\\": "tests/unit",
"Inpsyde\\GutenbergVersionManager\\Tests\\Integration\\": "tests/integration"
}
},
"scripts": {
"cs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
"cs:fix": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf",
"cs:ci": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs --report-full --report-checkstyle=./phpcs-report.xml",
"psalm": "@php ./vendor/vimeo/psalm/psalm --show-info=false --no-progress --no-cache --output-format=compact",
"psalm:ci": "@php ./vendor/vimeo/psalm/psalm --show-info=false --no-progress --no-cache --output-format=github",
"tests:unit": "@php ./vendor/phpunit/phpunit/phpunit --testsuite=unit",
"tests:unit:no-cov": "@php ./vendor/phpunit/phpunit/phpunit --testsuite=unit --no-coverage",
"tests": [
"@tests:unit"
],
"tests:no-cov": [
"@tests:unit:no-cov"
],
"qa": [
"@cs",
"@psalm",
"@tests:no-cov"
]
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "8.0"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"inpsyde/*": true,
"composer/*": true
}
}
}