-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (37 loc) · 907 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
{
"name": "hypernode/api-client",
"description": "Hypernode API Client for PHP",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Hypernode\\Api\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Hypernode\\Api\\": "tests/unit"
}
},
"authors": [
{
"name": "Hypernode"
}
],
"require": {
"composer-runtime-api": "^2.0",
"ext-curl": "*",
"ext-json": "*",
"nesbot/carbon": "^2.0",
"psr/http-client-implementation": "^1.0",
"php-http/client-common": "^2.5",
"php-http/discovery": "^1.14",
"symfony/polyfill-php80": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.9",
"guzzlehttp/guzzle": "^7.4",
"nikic/php-parser": "^4.14",
"phpunit/phpunit": "^9.5"
}
}