-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.67 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.67 KB
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
52
53
54
55
56
{
"name": "fingerprint/server-sdk",
"version": "7.2.0-beta.2",
"description": "Fingerprint Server API allows you to get, search, and update Events in a server environment. It can be used for data exports, decision-making, and data analysis scenarios. Server API is intended for server-side usage, it's not intended to be used from the client side, whether it's a browser or a mobile device.",
"keywords": [
"php",
"sdk",
"api",
"browser",
"detection",
"fingerprint",
"identification",
"fingerprinting",
"browser-fingerprinting",
"browser-fingerprint",
"fraud-detection",
"fraud",
"audio-fingerprinting",
"fingerprintjs",
"visitor-identification",
"fingerprintjs-pro"
],
"homepage": "https://fingerprint.com",
"license": "MIT",
"authors": [
{
"name": "fingerprint",
"homepage": "https://github.com/fingerprintjs/php-sdk"
}
],
"require": {
"php": "^8.2",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^7.3",
"guzzlehttp/psr7": "^1.7 || ^2.0",
"ext-zlib": "*",
"ext-openssl": "*"
},
"require-dev": {
"phpunit/phpunit": "^11.5",
"friendsofphp/php-cs-fixer": "^3.5",
"vlucas/phpdotenv": "^5.6"
},
"autoload": {
"psr-4": { "Fingerprint\\ServerSdk\\" : "src/" }
},
"autoload-dev": {
"psr-4": { "Fingerprint\\ServerSdk\\Test\\" : "test/" }
},
"replace": {
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*"
}
}