silverstripe-textextraction/composer.json

39 lines
933 B
JSON
Raw Normal View History

2013-01-07 14:07:39 +01:00
{
"name": "silverstripe/textextraction",
"type": "silverstripe-module",
2013-03-13 23:59:40 +01:00
"description": "Text Extraction API for SilverStripe CMS (mostly used with 'fulltextsearch' module)",
2013-01-07 14:07:39 +01:00
"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": {
"php": ">=5.6",
2013-01-07 14:07:39 +01:00
"composer/installers": "*",
"silverstripe/framework": "4.0.x-dev",
2017-12-22 02:00:41 +01:00
"guzzlehttp/guzzle": "~6.3.0",
2015-11-06 23:50:19 +01:00
"symfony/event-dispatcher": "^2.6.0@stable",
"symfony/http-foundation": "^2.6.0",
"silverstripe/assets": "^1"
},
"require-dev": {
"phpunit/phpunit": "~5.0"
},
"suggest": {
"ext-fileinfo": "Improved support for file mime detection"
},
"extra": {
"branch-alias": {
2017-12-20 04:43:15 +01:00
"dev-master": "3.x-dev"
}
2013-01-07 14:07:39 +01:00
}
2013-03-13 23:59:40 +01:00
}