This repository has been archived by the owner on Aug 16, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
83 lines (83 loc) · 2.38 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
{
"name": "typisttech/wp-contained-hook",
"description": "Using PSR-11 container implementation in WordPress plugins, themes and packages during WordPress action/filter callbacks.",
"keywords": [
"action",
"container",
"dependency",
"di",
"filter",
"hook",
"injection",
"psr11",
"wordpress",
"wp"
],
"homepage": "https://typist.tech/projects/wp-contained-hook",
"license": "MIT",
"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",
"psr/container": "^1.0",
"psr/container-implementation": "^1.0"
},
"require-dev": {
"10up/wp_mock": "^0.4.2",
"codeception/base": "^3.1",
"itinerisltd/itineris-wp-coding-standards": "^0.4.0",
"league/container": "^3.3",
"roave/security-advisories": "dev-master"
},
"suggest": {
"typisttech/imposter-plugin": "Wrap all composer vendor packages inside your own namespace, to prevent collisions when multiple plugins use this library"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.3.x-dev"
}
},
"autoload": {
"psr-4": {
"TypistTech\\WPContainedHook\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TypistTech\\WPContainedHook\\Test\\": "tests/unit"
}
},
"scripts": {
"pretag": [
"composer update",
"@test",
"@style:check",
"composer normalize",
"npx doctoc README.md",
"github_changelog_generator --no-verbose"
],
"style:check": "phpcs",
"style:fix": "phpcbf",
"test": "codecept run",
"test:coverage": "codecept run --coverage --coverage-html --coverage-xml"
},
"support": {
"email": "[email protected]",
"issues": "https://github.com/TypistTech/wp-contained-hook/issues",
"source": "https://github.com/TypistTech/wp-contained-hook"
}
}