-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
51 lines (51 loc) · 1.39 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
{
"name": "valu/wp-graphql-polylang",
"description": "Polylang bindings for wp-graphql",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Esa-Matti Suuronen",
"email": "esa-matti.suuronen@valu.fi",
"role": "developer"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/bordoni/phpass"
}
],
"require-dev": {
"bordoni/phpass": "*",
"lucatume/wp-browser": "~2.2",
"valu/wp-testing-tools": "^0.4.0",
"codeception/module-asserts": "^1.0",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-webdriver": "^1.0",
"codeception/module-db": "^1.0",
"codeception/module-filesystem": "^1.0",
"codeception/module-rest": "^1.0",
"codeception/module-cli": "^1.0",
"codeception/util-universalframework": "^1.0"
},
"config": {
"optimize-autoloader": true
},
"autoload": {
"psr-4": {
"WPGraphQL\\Extensions\\Polylang\\": "src/"
}
},
"require": {},
"scripts": {
"wp-install": "wp-install --full --post-install tools/post-install",
"test": "codecept run wpunit && codecept run functional",
"functional": "codecept run functional",
"wpunit": "codecept run wpunit"
},
"support": {
"issues": "https://github.com/valu-digital/wp-graphql-polylang/issues",
"source": "https://github.com/valu-digital/wp-graphql-polylang"
}
}