-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.11 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
{
"name": "joseffb/wp-developer-kit",
"description": "A development library to make creating things in wordpress a lot easier.",
"license": "MIT",
"version": "0.0.60",
"keywords": [
"WordPress",
"WordPress Plugin",
"WordPress Library",
"Development Kit",
"Timber",
"Twig",
"CiviCRM",
"GraphQL",
"WP-GraphQL",
"Shadow Taxonomy",
"Site Builder",
"Automation"
],
"autoload": {
"psr-4": {
"WDK\\": "library"
}
},
"authors": [
{
"name": "Joseff Betancourt",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0 || ^8.0",
"composer/installers": "~1.12.0",
"timber/timber": "1.24.1"
},
"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
}
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
]
}