-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 915 Bytes
/
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
{
"name": "auctionx/worker",
"type": "binary",
"license": "MIT",
"autoload": {
"psr-4": {
"Worker\\": "src/Worker/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Worker\\": "tests/"
}
},
"require": {
"php": ">=8.1",
"ext-curl": "*",
"ext-json": "*",
"symfony/console": "^6.1",
"web3p/ethereum-util": "^0.1.3",
"symfony/http-client": "^6.1",
"kornrunner/secp256k1": "^0.2.0",
"minter/minter-php-bip-44": "^1.2"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.5",
"symfony/var-dumper": "^6.1",
"phpstan/phpstan": "^1.7",
"phpunit/phpunit": "^9.5"
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"scripts": {
"post-install-cmd": [
"composer bin box install"
],
"test": "@php ./vendor/bin/phpunit tests",
"compile": "./vendor/bin/box compile"
}
}