-
Notifications
You must be signed in to change notification settings - Fork 301
/
Copy pathcomposer.json
executable file
·56 lines (56 loc) · 1.61 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
49
50
51
52
53
54
55
56
{
"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/solariumphp/solarium/contributors"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"halaxa/json-machine": "^1.1",
"psr/event-dispatcher": "^1.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"symfony/event-dispatcher-contracts": "^2.0 || ^3.0",
"composer-runtime-api": ">=2.0"
},
"require-dev": {
"ext-curl": "*",
"ext-iconv": "*",
"escapestudios/symfony2-coding-standard": "^3.11",
"nyholm/psr7": "^1.8",
"php-http/guzzle7-adapter": "^1.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9.6",
"rawr/phpunit-data-provider": "^3.3",
"roave/security-advisories": "dev-master",
"symfony/event-dispatcher": "^5.0 || ^6.0 || ^7.0"
},
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"autoload": {
"psr-4": {
"Solarium\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Solarium\\Tests\\": "tests/"
}
}
}