-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 1.88 KB
/
Copy pathcomposer.json
File metadata and controls
70 lines (70 loc) · 1.88 KB
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
{
"name": "10up/wp-content-connect",
"description": "WordPress library that enables direct relationships for posts to posts and posts to users.",
"type": "library",
"homepage": "https://github.com/10up/wp-content-connect",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "10up",
"email": "opensource@10up.com",
"homepage": "https://10up.com",
"role": "developer"
},
{
"name": "Chris Marslender",
"email": "chris.marslender@10up.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.4",
"composer/installers": "^2.3"
},
"autoload": {
"psr-4": {
"TenUp\\ContentConnect\\": "includes",
"TenUp\\ContentConnect\\Tests\\": "tests/php"
},
"files": [
"includes/Helpers.php"
]
},
"require-dev": {
"10up/phpcs-composer": "^3.0",
"phpcompatibility/php-compatibility": "dev-develop as 9.99.99",
"phpunit/phpunit": "^9.0",
"yoast/phpunit-polyfills": "^4.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"archive": {
"exclude": [
"/node_modules",
"/tests",
"/.github",
"/.git*",
"/.claude",
".DS_Store",
"/.phpunit.result.cache",
"/release",
"/artifacts",
"/bin",
"/docs",
"/run-tests.sh",
"/phpunit*.xml",
"/.wp-env.json",
"/.nvmrc",
"/build.js",
"/CONTRIBUTING.md",
"/CODE_OF_CONDUCT.md",
"/CREDITS.md"
]
}
}