diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..538895c --- /dev/null +++ b/composer.json @@ -0,0 +1,32 @@ +{ + "name": "solarium/solarium", + "type": "library", + "description": "PHP Solr client", + "keywords": ["solr", "search", "php"], + "homepage": "http://www.solarium-project.org", + "license": "BSD-3-Clause", + "authors": [ + { + "name": "See GitHub contributors", + "homepage": "https://github.com/basdenooijer/solarium/contributors" + } + ], + "require": { + "php": ">=5.3.2", + "symfony/event-dispatcher": "~2.3|~3.0" + }, + "require-dev": { + "phpunit/phpunit": "~3.7", + "squizlabs/php_codesniffer": "~1.4", + "zendframework/zendframework1": "~1.12", + "satooshi/php-coveralls": "~1.0" + }, + "extra": { + "branch-alias": { + "dev-develop": "3.3.x-dev" + } + }, + "autoload": { + "psr-0": { "Solarium\\": "library/" } + } +} |