-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
33 lines (33 loc) · 937 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": "sprain/nftport-api-client",
"type": "library",
"description": "A php library to use the api of nftport.xyz",
"keywords": ["api", "api-client", "nftport", "php"],
"homepage": "https://github.com/sprain/PhpNftPortApi",
"license": "MIT",
"authors": [
{
"name": "Manuel Reinhard",
"email": "[email protected]"
},
{
"name": "Additional contributors",
"homepage": "https://github.com/sprain/PhpNftPortApi/graphs/contributors"
}
],
"require": {
"php": "^8.1.0",
"jms/serializer": "^3.14",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Sprain\\NftPort\\": "lib/NftPort",
"Sprain\\NftPort\\Tests\\": "tests/NftPort/Tests"
}
}
}