-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
65 lines (65 loc) · 2.12 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
{
"name": "typisttech/wp-kses-view",
"description": "Safely rendering for WordPress, the OOP way",
"keywords": [
"wordpress",
"wp"
],
"homepage": "https://typist.tech/projects/wp-kses-view",
"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"
}
],
"require": {
"php": "^7.2"
},
"require-dev": {
"itinerisltd/itineris-wp-coding-standards": "^0.2.3"
},
"suggest": {
"typisttech/imposter-plugin": "Wrap all composer vendor packages inside your own namespace, to prevent collisions when multiple plugins use this library",
"typisttech/wp-admin-tabs": "Create tabbed navigation for WordPress admin dashboard, the OOP way",
"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"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"TypistTech\\WPKsesView\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TypistTech\\WPKsesView\\": "tests/_data/"
}
},
"scripts": {
"pretag": [
"composer update",
"composer normalize",
"@style:check",
"npx doctoc README.md",
"github_changelog_generator --no-verbose"
],
"style:check": "phpcs",
"style:fix": "phpcbf"
},
"support": {
"email": "[email protected]",
"issues": "https://github.com/TypistTech/wp-kses-view/issues",
"source": "https://github.com/TypistTech/wp-kses-view"
}
}