-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
43 lines (43 loc) · 1.17 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
{
"name": "coon-design/php-gridcoin",
"description": "RPC caller written in php for Gridcoin Research",
"license": "MIT",
"autoload": {
"psr-4": {"CoonDesign\\phpGridcoin\\": "src/"}
},
"authors": [
{
"name": "Startail the 'Coon",
"email": "[email protected]",
"homepage": "http://github.com/startailcoon/php-gridcoin",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/startailcoon/php-gridcoin/issues"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/startailcoon/jsonmapper"
}
],
"require": {
"netresearch/jsonmapper": "dev-master",
"curl/curl": "^2.5",
"php": ">=8",
"ext-json": "*",
"ext-mbstring": "*",
"ext-curl": "*",
"ext-xml": "*",
"ext-bcmath": "*",
"slim/slim":"4.*",
"slim/psr7": "^1.6",
"coon-design/rate-limit": "^0.6"
},
"require-dev": {
"phpunit/phpunit": "~7.5 || ~8.0 || ~9.0 || ~10.0",
"squizlabs/php_codesniffer": "~3.5",
"phpmd/phpmd": "^2.13"
}
}