-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
51 lines (51 loc) · 1.34 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
44
45
46
47
48
49
50
51
{
"name": "fingerprint/fingerprint-pro-server-api-sdk",
"version": "6.0.0-rc.0",
"description": "Fingerprint Pro Server API provides a way for validating visitors’ data issued by Fingerprint Pro.",
"keywords": [
"swagger",
"php",
"sdk",
"api",
"browser",
"detection",
"fingerprint",
"identification",
"fingerprinting",
"browser-fingerprinting",
"browser-fingerprint",
"fraud-detection",
"fraud",
"audio-fingerprinting",
"fingerprintjs",
"visitor-identification",
"fingerprintjs-pro"
],
"homepage": "https://www.fingerprint.com",
"license": "MIT",
"authors": [
{
"name": "fingerprint",
"homepage": "https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk"
}
],
"require": {
"php": ">=8.1",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "~7.2",
"ext-zlib": "*",
"ext-openssl": "*"
},
"require-dev": {
"phpunit/phpunit": "9.3.0",
"vlucas/phpdotenv": "^5.6"
},
"autoload": {
"psr-4": { "Fingerprint\\ServerAPI\\" : "./src" }
},
"autoload-dev": {
"psr-4": { "Fingerprint\\ServerAPI\\" : "test/" }
}
}