-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
75 lines (75 loc) · 2.53 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
73
74
75
{
"name": "ibexa/solr",
"description": "Solr search engine implementation for Ibexa",
"license": "GPL-2.0-only",
"type": "ibexa-bundle",
"replace": {
"ezsystems/ezplatform-solr-search-engine": "*"
},
"authors": [
{
"name": "eZ Systems dev team",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.3",
"ext-json": "*",
"ext-xmlwriter": "*",
"ibexa/core": "~5.0.x-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": {
"ibexa/code-style": "~2.0.0",
"ibexa/doctrine-schema": "~5.0.x-dev",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-symfony": "^1.2",
"phpunit/phpunit": "^9.6",
"symfony/phpunit-bridge": "^5.4",
"symfony/proxy-manager-bridge": "^5.4"
},
"autoload": {
"psr-4": {
"Ibexa\\Solr\\": "src/lib/",
"Ibexa\\Bundle\\Solr\\": "src/bundle/",
"Ibexa\\Contracts\\Solr\\": "src/contracts/",
"Ibexa\\Tests\\Solr\\SetupFactory\\": "tests/lib/SetupFactory/"
}
},
"autoload-dev": {
"psr-4": {
"Ibexa\\Tests\\Bundle\\Solr\\": "tests/bundle/",
"Ibexa\\Tests\\Solr\\": "tests/lib/",
"Ibexa\\Tests\\Integration\\Core\\": "vendor/ibexa/core/tests/integration/Core/",
"Ibexa\\Tests\\Core\\": "vendor/ibexa/core/tests/lib/",
"Ibexa\\Tests\\Bundle\\Core\\": "vendor/ibexa/core/tests/bundle/"
}
},
"scripts": {
"fix-cs": "php-cs-fixer fix --config=.php-cs-fixer.php -v --show-progress=dots",
"check-cs": "php-cs-fixer fix --dry-run -v --show-progress=dots",
"test": "phpunit --bootstrap tests/bootstrap.php -c phpunit.xml",
"test-integration-solr": [
"Composer\\Config::disableProcessTimeout",
"phpunit --bootstrap tests/bootstrap.php -c vendor/ibexa/core/phpunit-integration-legacy-solr.xml"
],
"phpstan": "phpstan analyse"
},
"extra": {
"branch-alias": {
"dev-main": "5.0.x-dev"
}
},
"config": {
"allow-plugins": false,
"sort-packages": true
}
}