-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
47 lines (47 loc) · 1.49 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
{
"name": "valu/wp-graphql-offset-pagination",
"description": "Add offset pagination to wp-graphql",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Esa-Matti Suuronen",
"email": "[email protected]",
"role": "developer"
}
],
"require-dev": {
"valu/wp-testing-tools": "^0.4.0",
"lucatume/wp-browser": "^2.2",
"phpunit/phpunit": "^8.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"
},
"autoload": {
"psr-4": {
"WPGraphQL\\Extensions\\OffsetPagination\\": "src/"
}
},
"scripts": {
"wp-install": "wp-install --full --env-file .env --wp-composer-file composer.wp-install.json",
"wpunit": "codecept run wpunit",
"functional": "codecept run functional",
"test": [
"@wpunit",
"@functional"
]
},
"config": {
"optimize-autoloader": true
},
"support": {
"issues": "https://github.com/valu-digital/wp-graphql-offset-pagination/issues",
"source": "https://github.com/valu-digital/wp-graphql-offset-pagination"
}
}