-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
44 lines (44 loc) · 1.1 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
{
"name": "rtcamp/elementary",
"description": "A starter theme that facilitates a quick head start for developing new block-based themes along with a bunch of developer-friendly features.",
"type": "wordpress-theme",
"homepage": "https://rtcamp.com/",
"license": "GPL-2.0-or-later",
"require-dev": {
"wp-coding-standards/wpcs": "^2.3",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"automattic/vipwpcs": "^2.3",
"dealerdirect/phpcodesniffer-composer-installer": "1.0.0",
"sirbrillig/phpcs-variable-analysis": "^2.11.3",
"phpunit/phpunit": "^9.5",
"wp-phpunit/wp-phpunit": "^6.0",
"yoast/phpunit-polyfills": "^3.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"classmap": [
"inc/"
],
"files": [
"inc/helpers/custom-functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Elementary_Theme\\Tests\\": "tests/php/"
}
},
"scripts": {
"phpcs": "@php ./vendor/bin/phpcs",
"phpcs:fix": "@php ./vendor/bin/phpcbf",
"post-install-cmd": [
"npm i"
]
}
}