forked from Merkeleon/php-cryptocurrency-address-validation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 819 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
{
"name": "merkeleon/php-cryptocurrency-address-validation",
"description": "Cryptocurrency address validation. Currently supports litecoin and bitcoin.",
"authors": [
{
"name": "Andrey Murashkin",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"ext-gmp": "*",
"ext-bcmath": "*",
"laravel/framework": ">=v7.0.0|>=v10.0.0",
"spomky-labs/cbor-php": "^3.0"
},
"scripts": {
"test": "@php vendor/bin/phpunit"
},
"require-dev": {
"phpunit/phpunit": "~8.0"
},
"autoload": {
"psr-4": {
"Merkeleon\\PhpCryptocurrencyAddressValidation\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}