-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.34 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.34 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
{
"name": "welabs/dokan-react-boilerplate",
"description": "This will help you understand how to extend and override features in the Dokan React implementation.",
"license": "GPL2",
"autoload": {
"psr-4": {
"WeLabs\\DokanReactBoilerplate\\": "includes/"
}
},
"authors": [
{
"name": "WeLabs",
"email": "contact@welabs.dev",
"homepage": "https://welabs.dev"
}
],
"minimum-stability": "dev",
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"tareq1988/wp-php-cs-fixer": "dev-master",
"phpunit/phpunit": "^9.6",
"wp-phpunit/wp-phpunit": "^6.1",
"yoast/phpunit-polyfills": "^1.0",
"symfony/var-dumper": "^5.4",
"squizlabs/php_codesniffer": "^3.13",
"automattic/vipwpcs": "^3.0",
"wp-coding-standards/wpcs": "^3.0",
"phpcompatibility/phpcompatibility-wp": "^2.1"
},
"scripts": {
"phpcs": [
"vendor/bin/phpcs -p -s"
],
"phpcs:report": [
"vendor/bin/phpcs --report-file='phpcs-report.txt'"
],
"phpcbf": [
"vendor/bin/phpcbf -p"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}