-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
71 lines (71 loc) · 2.44 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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "typisttech/wp-admin-tabs",
"description": "Create tabbed navigation for WordPress admin dashboard, the OOP way",
"keywords": [
"wordpress",
"wp"
],
"homepage": "https://typist.tech/projects/wp-admin-tabs",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Typist Tech",
"email": "[email protected]",
"homepage": "https://typist.tech/"
},
{
"name": "Tang Rufus",
"email": "[email protected]",
"homepage": "https://typist.tech/",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/TypistTech/wp-admin-tabs/issues",
"source": "https://github.com/TypistTech/wp-admin-tabs"
},
"require": {
"php": ">7.0",
"typisttech/wp-kses-view": "^0.4.0"
},
"require-dev": {
"codeception/aspect-mock": "^2.1",
"lucatume/wp-browser": "^2.0",
"neronmoon/scriptsdev": "^0.1.1",
"wp-coding-standards/wpcs": "^0.13.1"
},
"suggest": {
"typisttech/imposter-plugin": "Wrap all composer vendor packages inside your own namespace, to prevent collisions when multiple plugins use this library",
"typisttech/wp-better-settings": "A simplified OOP implementation of the WP Settings API",
"typisttech/wp-contained-hook": "Lazily instantiate objects from dependency injection container to WordPress hooks (actions and filters)",
"typisttech/wp-tabbed-admin-pages": "Create WordPress admin pages with tabbed navigations, the OOP way"
},
"autoload": {
"psr-4": {
"TypistTech\\WPAdminTabs\\": "src/"
}
},
"scripts": {
"check-style": "phpcs --standard=ruleset.xml --colors -p -s .",
"install-dev-extra": [
"phpcs --config-set installed_paths vendor/wp-coding-standards/wpcs"
],
"pre-tag": [
"doctoc README.md",
"github_changelog_generator --no-verbose"
],
"test": "codecept run",
"test:coverage": "codecept run --coverage --coverage-xml --coverage-html",
"test:wpunit": "codecept run wpunit"
},
"extra": {
"scripts-dev": {
"post-install-cmd": "@install-dev-extra",
"post-update-cmd": "@install-dev-extra"
}
},
"config": {
"sort-packages": true
}
}