-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
36 lines (36 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
{
"name": "smalltowndev/vajrawp",
"description": "A starter WordPress plugin scaffold which comes pre-configured for block development, admin dashboard with settings and standard plugin code.",
"type": "wordpress-plugin",
"author": "SmallTownDev Co.<[email protected]>",
"license": "GPL v2 or later",
"autoload": {
"psr-4": {
"VajraWP\\": "includes/"
}
},
"autoload-dev": {
"psr-4": {
"VajraWP\\Tests\\": "tests"
}
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"phpunit/phpunit": "^9.6",
"composer/installers": "^2.2",
"bamarni/composer-bin-plugin": "^1.8"
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"composer/installers": true,
"automattic/jetpack-autoloader": true
}
},
"require": {
"php": "^8.0",
"automattic/jetpack-autoloader": "^2.11",
"automattic/jetpack-assets": "^1.18",
"automattic/jetpack-plugins-installer": "^0.2.4"
}
}