-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
63 lines (63 loc) · 2.08 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
{
"name": "typisttech/wp-option-store",
"description": "Extending WordPress Options API, read options from places other than database, the OOP way",
"keywords": [
"wordpress",
"wp"
],
"homepage": "https://typist.tech/projects/wp-option-store",
"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"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/TypistTech/wp-option-store/issues",
"source": "https://github.com/TypistTech/wp-option-store"
},
"require": {
"php": "^7.2"
},
"require-dev": {
"itinerisltd/itineris-wp-coding-standards": "^0.3.5",
"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",
"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)"
},
"autoload": {
"psr-4": {
"TypistTech\\WPOptionStore\\": "src/"
}
},
"scripts": {
"style:check": "phpcs",
"style:fix": "phpcbf",
"pretag": [
"composer update",
"@test",
"@style:check",
"composer normalize",
"npx 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"
},
"config": {
"sort-packages": true
}
}