-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 962 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
41
42
{
"name": "envoymediagroup/columna",
"description": "Columnar analytics for PHP - a pure PHP library to read and write simple columnar files in a performant way.",
"type": "project",
"license": "MIT",
"config": {
"secure-http": false
},
"require-dev": {
"phpunit/phpunit": "^10",
"nikic/php-parser": "^4.14"
},
"require": {
"php": "^7.3 || ^8.0",
"ext-json": "*",
"ext-mbstring": "*"
},
"autoload": {
"psr-4": {
"EnvoyMediaGroup\\Columna\\": "src"
},
"classmap": [
"src/"
]
},
"autoload-dev": {
"psr-4": {
"EnvoyMediaGroup\\Columna\\Tests\\": "tests/"
},
"classmap": [
"tests/WriterAbstractTestCase.php",
"tests/ConstraintTestAbstract.php",
"tests/ReaderTestTrait.php",
"tests/ReflectionHelper.php"
]
},
"scripts": {
"test": "phpunit --testdox tests",
"test1": "phpunit --testdox",
"bundle": "php tools/bundler.php"
}
}