-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
57 lines (57 loc) · 1.43 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
49
50
51
52
53
54
55
56
57
{
"name": "therakib7/wp-plugin-kit",
"version": "0.1.0",
"description": "A starter plugin for WordPress that provides a foundational structure to build upon.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Rakib",
"email": "therakib7@gmail.com"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/therakib7/wp-plugin-kit.git"
}
],
"require": {
"php": "^7.4 || ^8.0"
},
"require-dev": {
"wp-coding-standards/wpcs": "^3.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/phpcompatibility-wp": "dev-master",
"wp-phpunit/wp-phpunit": "^6.0",
"yoast/phpunit-polyfills": "^1.0",
"doctrine/instantiator": "^1.3.1",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Therakib7\\WpPluginKit\\": "includes/",
"Therakib7\\WpPluginKit\\Tests\\": "tests/phpunit/"
}
},
"scripts": {
"phpcs": [
"phpcs -ps"
],
"phpcs:fix": [
"phpcbf -p"
],
"test": [
"phpunit"
],
"test:all": [
"phpcs -ps & phpunit"
]
},
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}