123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- {
- "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": "^7.1.3",
- "symfony/event-dispatcher": "^4.3 || ^5.0",
- "ext-json": "*"
- },
- "require-dev": {
- "friendsofphp/php-cs-fixer": "^2.16",
- "guzzlehttp/guzzle": "^3.8 || ^6.2",
- "php-coveralls/php-coveralls": "^2.1",
- "phpunit/phpunit": "^8.0",
- "squizlabs/php_codesniffer": "^3.4",
- "zendframework/zend-http": "^2.8"
- },
- "minimum-stability": "dev",
- "prefer-stable": true,
- "suggest": {
- "minimalcode/search": "Query builder compatible with Solarium, allows simplified solr-query handling"
- },
- "config": {
- "sort-packages": true
- },
- "autoload": {
- "psr-4": {
- "Solarium\\": "src/"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "Solarium\\Tests\\": "tests/"
- }
- }
- }
|