-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
48 lines (48 loc) · 1.19 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
46
47
48
{
"name": "j7-dev/wp-react-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\\WpReactPlugin\\": "inc/classes/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"require": {
"kucrut/vite-for-wp": "^0.8.0",
"j7-dev/wp-utils": "0.2.57"
},
"require-dev": {
"squizlabs/php_codesniffer": "@stable",
"wp-coding-standards/wpcs": "@stable",
"dealerdirect/phpcodesniffer-composer-installer": "@stable",
"phpcompatibility/php-compatibility": "@stable",
"phpstan/phpstan": "^1.11.9",
"php-stubs/woocommerce-stubs": "^9.1",
"php-stubs/wordpress-stubs": "^6.6",
"phpstan/extension-installer": "^1.4.1"
},
"scripts": {
"lint": "phpcs"
}
}