-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
45 lines (45 loc) · 1.08 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",
"description": "Patterns for building an application in WordPress.",
"type": "library",
"license": "GPL-2.0-only",
"require": {
"cedaro/wp-plugin": "0.4.0",
"php": ">=7.2",
"psr/log": "1.1.3"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "0.7.0",
"phpcompatibility/phpcompatibility-wp": "2.1.0",
"phpunit/phpunit": "9.1.4",
"squizlabs/php_codesniffer": "3.5.5",
"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.0",
"nette/neon": "3.1.2",
"vimeo/psalm": "3.11.6"
},
"autoload": {
"psr-4": {
"WPSteak\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WPSteak\\Test\\": "tests/"
}
},
"scripts": {
"install-codestandards": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
],
"lint": [
"phpqa",
"psalm"
],
"lint:fix": "phpcbf",
"test": "phpunit"
}
}