-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 966 Bytes
/
composer.json
File metadata and controls
46 lines (46 loc) · 966 Bytes
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
{
"name": "siftscience/sift-php",
"description": "Sift Science PHP library",
"keywords": ["sift", "sift science", "php", "fraud"],
"homepage": "https://github.com/SiftScience/sift-php",
"license": "MIT",
"version": "4.8.0",
"authors": [
{
"name": "Alex Lopatin"
},
{
"name": "Yoav Schatzberg"
},
{
"name": "Jacob Burnim"
},
{
"name": "Gary Lee"
},
{
"name": "Mohammed Jouahri"
},
{
"name": "Alex Paino"
}
],
"support": {
"email": "support@siftscience.com"
},
"require": {
"php": ">=7.1.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "7.*"
},
"autoload": {
"classmap": ["lib/"]
},
"autoload-dev": {
"psr-4": {
"SiftScience\\Test\\": "test/"
}
}
}