-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
41 lines (41 loc) · 1 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
{
"name": "wp-rainbow/wp-rainbow",
"description": "RainbowKit Login",
"type": "project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Davis Shaver",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/davisshaver/web3.php.git"
}
],
"require-dev": {
"phpunit/phpunit": "^7.5.20",
"alleyinteractive/alley-coding-standards": "^0.3.0"
},
"scripts": {
"lint": "@phpcs",
"lint:fix": "@phpcbf",
"phpcbf": "phpcbf . --runtime-set text_domain wp-rainbow --runtime-set prefixes wp_rainbow",
"phpcs": "phpcs . --runtime-set text_domain wp-rainbow --runtime-set prefixes wp_rainbow",
"phpunit": "phpunit --config=phpunit.xml",
"test": "@phpunit"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"alleyinteractive/composer-wordpress-autoloader": true
}
},
"require": {
"simplito/elliptic-php": "^1.0.10",
"kornrunner/keccak": "^1.1.0",
"web3p/web3.php": "dev-master"
}
}