forked from Apiki/wpsteak-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.07 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
{
"name": "apiki/wpsteak-plugin",
"description": "A fully structured WordPress plugin.",
"type": "wordpress-plugin",
"license": "GPL-2.0-only",
"require": {
"apiki/wpsteak": "0.1.2",
"composer/installers": "1.9.0",
"league/container": "3.3.1",
"php": ">=7.4"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "0.7.0",
"phpcompatibility/phpcompatibility-wp": "2.1.0",
"phpunit/phpunit": "8.5.6",
"wp-coding-standards/wpcs": "2.3.0",
"slevomat/coding-standard": "6.3.9",
"edgedesign/phpqa": "1.23.3",
"php-stubs/wordpress-stubs": "5.4.2",
"szepeviktor/phpstan-wordpress": "0.6.2",
"nette/neon": "3.1.2",
"vimeo/psalm": "3.12.1"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests/"
}
},
"scripts": {
"install-codestandards": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
],
"lint": [
"phpqa",
"psalm"
],
"lint:fix": "phpcbf",
"test": "phpunit"
}
}