2013-01-07 14:07:39 +01:00
|
|
|
{
|
2018-07-03 05:58:12 +02:00
|
|
|
"name": "silverstripe/textextraction",
|
|
|
|
"type": "silverstripe-vendormodule",
|
|
|
|
"description": "Text Extraction API for SilverStripe CMS (mostly used with 'fulltextsearch' module)",
|
|
|
|
"homepage": "http://silverstripe.org",
|
|
|
|
"license": "BSD-3-Clause",
|
|
|
|
"keywords": [
|
|
|
|
"silverstripe",
|
|
|
|
"fulltext",
|
|
|
|
"pdf"
|
|
|
|
],
|
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "SilverStripe",
|
|
|
|
"homepage": "http://silverstripe.com"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "The SilverStripe Community",
|
|
|
|
"homepage": "http://silverstripe.org"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"require": {
|
2022-12-13 05:13:54 +01:00
|
|
|
"php": "^8.1",
|
|
|
|
"silverstripe/framework": "^5",
|
|
|
|
"silverstripe/assets": "^2",
|
|
|
|
"silverstripe/versioned": "^2",
|
|
|
|
"guzzlehttp/guzzle": "^7.5"
|
2018-07-03 05:58:12 +02:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2018-07-03 06:02:43 +02:00
|
|
|
"squizlabs/php_codesniffer": "^3",
|
2023-08-09 05:07:33 +02:00
|
|
|
"phpunit/phpunit": "^9.6"
|
2018-07-03 05:58:12 +02:00
|
|
|
},
|
2019-02-13 05:42:28 +01:00
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
|
|
|
"SilverStripe\\TextExtraction\\": "src/",
|
|
|
|
"SilverStripe\\TextExtraction\\Tests\\": "tests/"
|
|
|
|
}
|
|
|
|
},
|
2018-07-03 05:58:12 +02:00
|
|
|
"suggest": {
|
|
|
|
"ext-fileinfo": "Improved support for file mime detection"
|
|
|
|
},
|
2021-05-05 01:17:57 +02:00
|
|
|
"extra": [],
|
2018-07-03 05:58:12 +02:00
|
|
|
"minimum-stability": "dev",
|
|
|
|
"prefer-stable": true
|
2023-08-09 05:07:33 +02:00
|
|
|
}
|