-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
90 lines (90 loc) · 2.92 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "typisttech/wp-better-settings",
"description": "A simplified OOP implementation of the WP Settings API",
"keywords": [
"wordpress",
"wp"
],
"homepage": "https://www.typist.tech/projects/wp-better-settings",
"license": "GPL-2.0+",
"authors": [
{
"name": "Typist Tech",
"email": "[email protected]",
"homepage": "https://www.typist.tech/"
},
{
"name": "Tang Rufus",
"email": "[email protected]",
"homepage": "https://www.typist.tech/",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/TypistTech/wp-better-settings/issues",
"source": "https://github.com/TypistTech/wp-better-settings"
},
"require": {
"php": ">7.0",
"bupy7/php-html-form": "^1.0",
"typisttech/wp-kses-view": "^0.4.0",
"typisttech/wp-option-store": "^0.1.1"
},
"require-dev": {
"codeception/aspect-mock": "^2.1",
"lucatume/wp-browser": "^2.0.5",
"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-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\\WPBetterSettings\\": "src/"
}
},
"scripts": {
"build": [
"rm -fr vendor",
"composer install --no-dev --prefer-dist --no-suggest",
"composer archive --format=zip --dir=release --file=wp-better-settings"
],
"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
},
"archive": {
"exclude": [
"/*",
".*",
"!/languages",
"!/partials",
"!/src",
"!/vendor",
"!/LICENSE",
"!/README.txt",
"!/*.php"
]
}
}