-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
106 lines (106 loc) · 2.6 KB
/
composer.json
File metadata and controls
106 lines (106 loc) · 2.6 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "joseffb/wp-developer-kit",
"description": "A development library to make creating things in wordpress a lot easier.",
"license": "MIT",
"keywords": [
"WordPress",
"WordPress Plugin",
"WordPress Library",
"Development Kit",
"Timber",
"Twig",
"CiviCRM",
"GraphQL",
"WP-GraphQL",
"Shadow Taxonomy",
"Site Builder",
"Automation"
],
"autoload": {
"psr-4": {
"WDK\\": "library"
},
"files": [
"wdk-runtime-loader.php"
],
"classmap": [
"library/Stripe_Rest_API_Provider.php"
]
},
"authors": [
{
"name": "Joseff Betancourt",
"email": "wp-developer-kit@joseffb.com"
}
],
"require": {
"php": "^8.1",
"composer/installers": "^2.3",
"timber/timber": "^1.24.1 || ^2.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5"
},
"suggest": {
"wp-graphql/wp-graphql": "As a faster and alternative to the built in wp-json and wp-query system",
"aws/aws-sdk-php": "3.*",
"elasticsearch/elasticsearch": "8.7.x-dev",
"solarium/solarium": "^6.2.8"
},
"config": {
"allow-plugins": {
"composer/installers": true
}
},
"scripts": {
"test:smoke": [
"php tests/unit/timber_bridge_compat_test.php",
"php tests/unit/taxonomy_create_term_test.php",
"php tests/integration/shadow_relationship_test.php",
"php tests/e2e/postinterface_search_null_test.php"
],
"test:phpunit": [
"vendor/bin/phpunit --configuration phpunit.xml.dist"
],
"test": [
"@test:smoke",
"@test:phpunit"
],
"lint": [
"find library tests -name '*.php' -print0 | xargs -0 -n1 php -l"
],
"ci:doctor": [
"bash ./scripts/ci/doctor.sh"
],
"ci:php": [
"Composer\\Config::disableProcessTimeout",
"bash ./scripts/ci/php.sh"
],
"ci:wp-env": [
"Composer\\Config::disableProcessTimeout",
"bash ./scripts/ci/wp-env.sh"
],
"ci:coexistence": [
"Composer\\Config::disableProcessTimeout",
"bash ./scripts/ci/coexistence.sh"
],
"ci:local": [
"Composer\\Config::disableProcessTimeout",
"bash ./scripts/ci/local.sh"
],
"ci:github": [
"Composer\\Config::disableProcessTimeout",
"bash ./scripts/ci/act.sh"
],
"ci:green": [
"Composer\\Config::disableProcessTimeout",
"bash ./scripts/ci/green.sh"
]
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
]
}