silverstripe-textextraction/composer.json

38 lines
892 B
JSON
Raw Permalink 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.3.2",
"composer/installers": "*",
"silverstripe/framework": "^3.7",
2015-11-06 23:50:19 +01:00
"guzzle/guzzle": "^3.9",
"symfony/event-dispatcher": "^2.6.0@stable",
"symfony/http-foundation": "^2.6.0"
},
"require-dev": {
2015-11-06 23:50:19 +01:00
"phpunit/phpunit": "^3.7"
},
"suggest": {
"ext-fileinfo": "Improved support for file mime detection"
},
"extra": {
"branch-alias": {
2019-04-12 05:17:45 +02:00
"2.x-dev": "2.3.x-dev"
}
2013-01-07 14:07:39 +01:00
}
2013-03-13 23:59:40 +01:00
}