This repository has been archived by the owner on Jun 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
composer.json
60 lines (60 loc) · 1.83 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
58
59
60
{
"name": "wpstrap/wordpress-plugin-boilerplate",
"description": "Wordpress Plugin Boilerplate",
"version": "0.3.1",
"minimum-stability": "stable",
"prefer-stable": true,
"type": "wordpress-plugin",
"license": "MIT",
"homepage": "https://wp-strap.com",
"autoload": {
"psr-4": {
"ThePluginName\\": "src/"
}
},
"scripts": {
"codecept": "vendor/bin/codecept",
"run:wpunit": "vendor/bin/codecept run wpunit",
"run:functional": "vendor/bin/codecept run functional",
"run:acceptance": "vendor/bin/codecept run acceptance",
"generate:wpunit": "vendor/bin/codecept generate:wpunit wpunit",
"generate:functional": "vendor/bin/codecept generate:cept functional",
"generate:acceptance": "vendor/bin/codecept generate:test acceptance",
"phpcs": "./vendor/bin/phpcs"
},
"require": {
"php": ">=7.1",
"micropackage/requirements": "^1.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"wp-coding-standards/wpcs": "*",
"automattic/phpcs-neutron-ruleset": "^3.3",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"lucatume/function-mocker": "~1.0",
"lucatume/wp-browser": "^3.0",
"codeception/lib-innerbrowser": "^1.0",
"codeception/module-asserts": "^1.0",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-webdriver": "^1.0",
"codeception/module-db": "^1.0",
"codeception/module-filesystem": "^1.0",
"codeception/module-cli": "^1.0",
"codeception/module-rest": "^1.2",
"codeception/util-universalframework": "^1.0",
"codeception/codeception-progress-reporter": "^4.0.2"
},
"keywords": [
"wordpress",
"plugin",
"boilerplate",
"framework"
],
"authors": [
{
"name": "WP-Strap",
"email": "[email protected]",
"homepage": "https://wp-strap.com"
}
]
}