-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomposer.json
107 lines (107 loc) · 4.16 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "rollerworks/search-dev",
"type": "project",
"description": "RollerworksSearch monolith development (use separate packages instead)",
"homepage": "https://rollerworks.github.io/",
"license": "MIT",
"authors": [
{
"name": "Sebastiaan Stok",
"email": "[email protected]"
},
{
"name": "Community contributions",
"homepage": "https://github.com/rollerworks/search/contributors"
}
],
"require": {
"php": ">=7.4",
"nesbot/carbon": "^2.38",
"psr/container": "^1.0.0",
"symfony/intl": "^5.3",
"symfony/options-resolver": "^5.3",
"symfony/property-access": "^5.3",
"symfony/string": "^5.1"
},
"replace": {
"rollerworks/search": "self.version",
"rollerworks/search-api-platform": "self.version",
"rollerworks/search-bundle": "self.version",
"rollerworks/search-doctrine-dbal": "self.version",
"rollerworks/search-doctrine-orm": "self.version",
"rollerworks/search-elasticsearch": "self.version",
"rollerworks/search-symfony-validator": "self.version"
},
"conflict": {
"moneyphp/money": "<3.2.0"
},
"require-dev": {
"api-platform/core": "^2.4.5",
"doctrine/dbal": "^2.10.3",
"doctrine/doctrine-bundle": "^1.9.1 || ^2.0",
"doctrine/orm": "^2.7.3",
"jangregor/phpstan-prophecy": "^0.8.1",
"matthiasnoback/symfony-dependency-injection-test": "^3.0 || ^4.1.1",
"moneyphp/money": "^3.2.0 || ^4.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^0.12.94",
"phpstan/phpstan-doctrine": "^0.12.42",
"phpstan/phpstan-phpunit": "^0.12.21",
"phpstan/phpstan-symfony": "^0.12.41",
"phpunit/phpunit": "^9.5.7",
"psr/simple-cache": "^1.0.0",
"ruflin/elastica": "^7.0",
"symfony/asset": "^5.3",
"symfony/browser-kit": "^5.3",
"symfony/dom-crawler": "^5.3",
"symfony/framework-bundle": "^5.3",
"symfony/http-foundation": "^5.3",
"symfony/phpunit-bridge": "^5.3",
"symfony/routing": "^5.3",
"symfony/templating": "^5.3",
"symfony/translation": "^5.3",
"symfony/twig-bundle": "^5.3",
"symfony/validator": "^5.3",
"symfony/var-dumper": "^5.3"
},
"suggest": {
"moneyphp/money": "To use the MoneyType"
},
"config": {
"preferred-install": {
"api-platform/core": "source",
"doctrine/dbal": "source",
"doctrine/orm": "source",
"*": "dist"
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"autoload": {
"psr-4": {
"Rollerworks\\Component\\Search\\": "lib/Core",
"Rollerworks\\Component\\Search\\ApiPlatform\\": "lib/ApiPlatform",
"Rollerworks\\Component\\Search\\Doctrine\\Dbal\\": "lib/Doctrine/Dbal",
"Rollerworks\\Component\\Search\\Extension\\Doctrine\\Dbal\\": "lib/Doctrine/Dbal/Extension",
"Rollerworks\\Component\\Search\\Doctrine\\Orm\\": "lib/Doctrine/Orm",
"Rollerworks\\Component\\Search\\Extension\\Doctrine\\Orm\\": "lib/Doctrine/Orm/Extension",
"Rollerworks\\Component\\Search\\Elasticsearch\\": "lib/Elasticsearch",
"Rollerworks\\Component\\Search\\Extension\\Symfony\\Validator\\": "lib/Symfony/Validator",
"Rollerworks\\Bundle\\SearchBundle\\": "lib/Symfony/SearchBundle"
}
},
"autoload-dev": {
"psr-4": {
"Rollerworks\\Component\\Search\\Tests\\Elasticsearch\\": "lib/Elasticsearch/Tests",
"Rollerworks\\Component\\Search\\Tests\\Doctrine\\Dbal\\": "lib/Doctrine/Dbal/Tests",
"Rollerworks\\Component\\Search\\Tests\\Doctrine\\Orm\\": "lib/Doctrine/Orm/Tests",
"Rollerworks\\Bundle\\SearchBundle\\Tests\\": "lib/Symfony/SearchBundle/Tests",
"ApiPlatform\\Core\\Tests\\": "vendor/api-platform/core/tests",
"Doctrine\\Tests\\": "vendor/doctrine/dbal/tests/Doctrine/Tests/"
}
}
}