-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.25 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.25 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
47
48
49
{
"name": "j7-dev/wp-refine-plugin",
"description": "This is a boilerplate for creating a WordPress plugin with React, Tailwind, Ant Design, TypeScript, Zod, MSW, React Router v6, React Query v4, SCSS and Vite.",
"type": "wordpress-plugin",
"license": "GPL-2.0-only",
"authors": [
{
"name": "JerryLiu",
"email": "j7.dev.gg@gmail.com",
"homepage": "https://github.com/j7-dev",
"role": "Developer"
}
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"autoload": {
"psr-4": {
"J7\\WpRefinePlugin\\": "inc/classes/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"require": {
"kucrut/vite-for-wp": "^0.12",
"j7-dev/wp-utils": "^0.3"
},
"require-dev": {
"squizlabs/php_codesniffer": "@stable",
"wp-coding-standards/wpcs": "@stable",
"dealerdirect/phpcodesniffer-composer-installer": "@stable",
"phpcompatibility/php-compatibility": "@stable",
"phpstan/phpstan": "@stable",
"php-stubs/woocommerce-stubs": "@stable",
"php-stubs/wordpress-stubs": "@stable",
"phpstan/extension-installer": "@stable"
},
"scripts": {
"lint": "phpcs",
"analyse": "phpstan analyse inc --memory-limit=6G"
}
}