forked from solariumphp/solarium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·48 lines (48 loc) · 1.33 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "acsi/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/solariumphp/solarium/contributors"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"psr/event-dispatcher": "^1.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"symfony/event-dispatcher-contracts": "^1.0 || ^2.0"
},
"require-dev": {
"escapestudios/symfony2-coding-standard": "^3.11",
"guzzlehttp/guzzle": "^6.5",
"nyholm/psr7": "^1.2",
"php-http/guzzle6-adapter": "^2.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-phpunit": "^0.12",
"phpunit/phpunit": "^8.0",
"roave/security-advisories": "dev-master",
"symfony/event-dispatcher": "^4.3 || ^5.0"
},
"prefer-stable": true,
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Solarium\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Solarium\\Tests\\": "tests/"
}
}
}