-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (68 loc) · 2.06 KB
/
composer.json
File metadata and controls
68 lines (68 loc) · 2.06 KB
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
{
"name": "syde/multisyde",
"description": "A WordPress plugin that explores potential improvements for WordPress Multisite.",
"type": "project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Syde",
"email": "hello@syde.com",
"homepage": "https://syde.com",
"role": "Company"
},
{
"name": "Dennis Ploetner",
"email": "re@lloc.de",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Syde\\MultiSyde\\": "src/",
"Syde\\MultiSyde\\Modules\\": "modules/"
}
},
"autoload-dev": {
"psr-4": {
"Syde\\MultiSydeUnitTests\\": "tests/php/unit/",
"Syde\\MultiSydeIntegrationTests\\": "tests/php/integration/"
}
},
"minimum-stability": "stable",
"platform": {
"php": ">=7.4"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"lloc/composer-i18n-scripts": true
}
},
"require-dev": {
"wp-coding-standards/wpcs": "^3.0",
"szepeviktor/phpstan-wordpress": "^2.0",
"phpstan/extension-installer": "^1.4",
"phpunit/phpunit": "^9.6",
"brain/monkey": "^2.0@dev",
"phpstan/phpstan-mockery": "^2.0",
"lloc/composer-i18n-scripts": "^1.0",
"phpcompatibility/phpcompatibility-wp": "^2.1"
},
"scripts": {
"tests": "./vendor/bin/phpunit -c ./phpunit.xml.dist",
"tests:coverage": "XDEBUG_MODE=coverage ./vendor/bin/phpunit -c ./phpunit.xml.dist --coverage-html ./tests/coverage",
"phpcs": "vendor/bin/phpcs .",
"phpcbf": "./vendor/bin/phpcbf .",
"phpstan": "./vendor/bin/phpstan analyse --memory-limit=1G",
"qa": [
"@cs",
"@phpstan"
],
"git-release": "bin/git-release.sh",
"build": [
"@composer install --no-dev",
"@git-release"
]
}
}