forked from gatsbyjs/wp-gatsby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
82 lines (82 loc) · 2.09 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
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
{
"name": "gatsbyjs/wp-gatsby",
"description": "Optimize your WordPress site as a source for Gatsby site(s)",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "GatsbyJS"
},
{
"name": "Jason Bahl"
},
{
"name": "Tyler Barnes"
}
],
"autoload": {
"psr-4": {
"WPGatsby\\": "src/"
}
},
"autoload-dev": {
"files": [
"tests/_data/config.php"
]
},
"config": {
"optimize-autoloader": true,
"process-timeout": 0
},
"require": {
"php": "^7.3||^8.0",
"firebase/php-jwt": "^5.2",
"ircmaxell/random-lib": "^1.2",
"composer/semver": "^1.5"
},
"require-dev": {
"lucatume/wp-browser": "^2.4",
"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-cli": "^1.0",
"codeception/util-universalframework": "^1.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"wp-coding-standards/wpcs": "2.1.1",
"phpcompatibility/phpcompatibility-wp": "2.1.0",
"squizlabs/php_codesniffer": "3.5.4",
"codeception/module-rest": "^1.2",
"wp-graphql/wp-graphql-testcase": "^1.0",
"phpunit/phpunit": "9.4.1"
},
"scripts": {
"install-test-env": "bash bin/install-test-env.sh",
"docker-build": "bash bin/run-docker.sh build",
"docker-run": "bash bin/run-docker.sh run",
"docker-destroy": "docker-compose down",
"build-and-run": [
"@docker-build",
"@docker-run"
],
"build-app": "@docker-build -a",
"build-test": "@docker-build -t",
"run-app": "@docker-run -a",
"run-test": "@docker-run -t",
"lint": "vendor/bin/phpcs",
"phpcs-i": [
"php ./vendor/bin/phpcs -i"
],
"check-cs": [
"php ./vendor/bin/phpcs src"
],
"fix-cs": [
"php ./vendor/bin/phpcbf src"
]
},
"support": {
"issues": "https://github.com/gatsbyjs/wp-gatsby/issues",
"source": "https://github.com/gatsbyjs/wp-gatsby"
}
}