forked from wecodemore/wpstarter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
98 lines (98 loc) · 3.16 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "wecodemore/wpstarter",
"description": "Composer plugin to easily build WordPress websites entirely managed via Composer.",
"type": "composer-plugin",
"keywords": [
"composer",
"composer plugin",
"wordpress",
"wp",
"wp-config",
"config",
"env"
],
"prefer-stable": true,
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Giuseppe Mazzapica",
"email": "giuseppe.mazzapica@gmail.com",
"homepage": "https://gmazzap.me",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/wecodemore/wpstarter/issues",
"source": "https://github.com/wecodemore/wpstarter"
},
"require": {
"php": ">=7.1 < 8.3",
"ext-curl": "*",
"ext-dom": "*",
"ext-filter": "*",
"ext-hash": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-mysqli": "*",
"ext-SPL": "*",
"composer-plugin-api": "^1.10 || ^2",
"composer/installers": "^1.12.0 || ^2",
"symfony/dotenv": "^3.4 || ^5 || ^6 || ^7"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"composer/package-versions-deprecated": "^1.11.99",
"composer/composer": "^2.5.4",
"symfony/process": "^3.4.47 || ^5.4.19 || ^6 || ^7",
"wp-cli/wp-cli": "^2.7.1",
"inpsyde/php-coding-standards": "^1.0.0",
"vimeo/psalm": "^4.30.0 || ^5",
"phpunit/phpunit": "^7.5.20 || ^9.6.3",
"mockery/mockery": "^1.3.6",
"mikey179/vfsstream": "^1.6.11"
},
"autoload": {
"classmap": [
"src/WpStarterCommand.php",
"src/ComposerPlugin.php",
"src/Env/"
]
},
"autoload-dev": {
"psr-4": {
"WeCodeMore\\WpStarter\\": "src/",
"WeCodeMore\\WpStarter\\Tests\\": "tests/src/",
"WeCodeMore\\WpStarter\\Tests\\Unit\\": "tests/unit/",
"WeCodeMore\\WpStarter\\Tests\\Integration\\": "tests/integration/"
}
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"composer/*": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"cs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
"psalm": "@php ./vendor/vimeo/psalm/psalm --no-suggestions --find-unused-psalm-suppress --no-diff --no-cache --no-file-cache",
"tests:unit": "@php ./vendor/phpunit/phpunit/phpunit --testsuite=unit",
"tests:unit:no-cov": "@php ./vendor/phpunit/phpunit/phpunit --testsuite=unit --no-coverage",
"tests:integration": "@php ./vendor/phpunit/phpunit/phpunit --testsuite=integration --no-coverage",
"qa": [
"@cs",
"@psalm",
"@tests:unit:no-cov"
]
},
"extra": {
"class": "WeCodeMore\\WpStarter\\ComposerPlugin",
"branch-alias": {
"dev-master": "2.x-dev",
"dev-dev": "3.x-dev",
"dev-version-2": "2.x-dev",
"dev-version-3": "3.x-dev"
}
}
}