-
Notifications
You must be signed in to change notification settings - Fork 34
/
composer.json
72 lines (72 loc) · 2.63 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "ezsystems/ezplatform-solr-search-engine",
"description": "Solr search engine implementation for eZ Platform",
"license": "GPL-2.0-only",
"type": "ezplatform-bundle",
"homepage": "https://github.com/ezsystems/ezplatform-solr-search-engine",
"authors": [
{
"name": "eZ Systems dev team",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3 || ^8.0",
"ext-json": "*",
"ext-xmlwriter": "*",
"ezsystems/ezplatform-kernel": "^1.3@dev",
"netgen/query-translator": "^1.0.2",
"symfony/http-kernel": "^5.0",
"symfony/dependency-injection": "^5.0",
"symfony/console": "^5.0",
"symfony/config": "^5.0",
"symfony/framework-bundle": "^5.0",
"symfony/http-client": "^5.4"
},
"require-dev": {
"ezsystems/doctrine-dbal-schema": "^1.0@dev",
"ezsystems/ezplatform-code-style": "^0.1.0",
"league/flysystem-memory": "^1.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-symfony": "^1.2",
"phpunit/phpunit": "^8.2",
"symfony/proxy-manager-bridge": "^5.4"
},
"autoload": {
"psr-4": {
"Ibexa\\Solr\\": "src/lib/",
"Ibexa\\Tests\\Solr\\SetupFactory\\": "tests/lib/SetupFactory/",
"EzSystems\\EzPlatformSolrSearchEngine\\": "lib/",
"EzSystems\\EzPlatformSolrSearchEngineBundle\\": "bundle/",
"EzSystems\\EzPlatformSolrSearchEngine\\Tests\\SetupFactory\\": "tests/lib/SetupFactory/"
}
},
"autoload-dev": {
"psr-4": {
"Ibexa\\Tests\\Bundle\\Solr\\": "tests/bundle/",
"Ibexa\\Tests\\Solr\\": "tests/lib/",
"EzSystems\\EzPlatformSolrSearchEngine\\Tests\\": "tests/lib",
"EzSystems\\EzPlatformSolrSearchEngineBundle\\Tests\\": "tests/bundle"
}
},
"scripts": {
"test": "phpunit --bootstrap tests/bootstrap.php -c phpunit.xml",
"test-integration-solr": [
"Composer\\Config::disableProcessTimeout",
"phpunit --bootstrap tests/bootstrap.php -c vendor/ezsystems/ezplatform-kernel/phpunit-integration-legacy-solr.xml"
],
"fix-cs": "php-cs-fixer fix -v --show-progress=estimating",
"check-cs": "php-cs-fixer fix --dry-run -v --show-progress=estimating",
"phpstan": "phpstan analyse"
},
"extra": {
"branch-alias": {
"dev-master": "3.3.x-dev"
}
},
"config": {
"allow-plugins": false
}
}