forked from vaites/php-apache-tika
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.67 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
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "vaites/php-apache-tika",
"description": "Apache Tika bindings for PHP: extracts text from documents and images (with OCR), metadata and more...",
"keywords": [
"apache",
"tika",
"pdf",
"doc",
"docx",
"ppt",
"pptx",
"odt",
"office",
"documents",
"ocr"
],
"license": "MIT",
"authors": [
{
"name": "David Martínez",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Vaites\\ApacheTika\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Vaites\\ApacheTika\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.3.0",
"ext-curl": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"nunomaduro/phpinsights": "^1.14",
"phpstan/phpstan": "^0.12.26",
"symfony/var-dumper": "^5.1",
"filp/whoops": "^2.7",
"psy/psysh": "^0.10.8",
"nunomaduro/collision": "^5.11"
},
"extra": {
"supported-versions": [
"1.15", "1.16", "1.17", "1.18", "1.19", "1.19.1", "1.20", "1.21", "1.22", "1.23", "1.24", "1.24.1",
"1.25", "1.26", "1.27", "1.28", "1.28.1", "1.28.2", "1.28.3", "1.28.4", "1.28.5",
"2.0.0", "2.1.0", "2.2.0", "2.2.1", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0",
"2.9.0", "2.9.1", "2.9.2"
]
},
"scripts": {
"test": "vendor/bin/phpunit --coverage-html reports"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
}
}