-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.03 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
{
"name": "davisshaver/frames-integration-for-farcaster",
"description": "Frames Integration for Farcaster connects your WordPress site to Farcaster.",
"type": "wordpress-plugin",
"license": "GPL-3.0",
"require-dev": {
"automattic/vipwpcs": "^3.0",
"wp-coding-standards/wpcs": "^3.0",
"dealerdirect/phpcodesniffer-composer-installer": "*",
"phpcompatibility/phpcompatibility-wp": "*",
"yoast/phpunit-polyfills": "^3.0",
"phpunit/phpunit": "^7.0 || ^9.5",
"php-stubs/wp-cli-stubs": "^2.11",
"wp-cli/wp-cli": "^2.11",
"php-stubs/wordpress-tests-stubs": "^6.7"
},
"autoload": {
"classmap": [
"./includes",
"./tests/helpers"
]
},
"config": {
"platform": {
"php": "8.0"
},
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"drlecks/simple-web3-php": "dev-master"
},
"scripts": {
"phpunit": "phpunit --config=phpunit.xml",
"test": "@phpunit",
"coverage": "XDEBUG_MODE=coverage phpunit --coverage-html coverage-report"
}
}