-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
40 lines (40 loc) · 998 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
38
39
40
{
"name": "codename/parquet",
"description": "Thrift-based PHP implementation for using the Apache Parquet format",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Kevin Dargel",
"role": "Developer"
}
],
"require": {
"php" : ">=7.3 <=8.3.99",
"ext-gmp" : "*",
"ext-bcmath" : "*",
"ext-zlib": "*",
"pear/math_biginteger" : "^1.0",
"packaged/thrift": "^0.15.0"
},
"suggest" : {
"ext-snappy" : "Install/compile snappy extension to get support for snappy compression reading/writing"
},
"autoload": {
"psr-4": {
"codename\\parquet\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"codename\\parquet\\tests\\": "tests/"
}
},
"archive": {
"exclude": [ "tests" ]
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"phpunit/php-code-coverage": "^9.2"
}
}