-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.62 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
{
"name": "rollerworks/search",
"description": "RollerworksSearch provides you with a powerful search system",
"license": "MIT",
"type": "library",
"keywords": [
"rollerworks",
"filter",
"search"
],
"authors": [
{
"name": "Sebastiaan Stok",
"email": "[email protected]"
},
{
"name": "Community contributions",
"homepage": "https://github.com/rollerworks/search/contributors"
}
],
"homepage": "https://rollerworks.github.io/",
"require": {
"php": ">=8.1",
"nesbot/carbon": "^2.38 || ^3.0",
"psr/container": "^1.1 || ^2.0",
"symfony/intl": "^6.0 || ^7.0",
"symfony/options-resolver": "^6.4 || ^7.0",
"symfony/property-access": "^6.4 || ^7.0",
"symfony/string": "^6.4 || ^7.0",
"symfony/translation-contracts": "^3.4"
},
"require-dev": {
"moneyphp/money": "^3.2.0 || ^4.0",
"phpunit/phpunit": "^9.5",
"symfony/phpunit-bridge": "^6.4 || ^7.0",
"symfony/var-dumper": "^6.4 || ^7.0"
},
"conflict": {
"moneyphp/money": "<3.2.0"
},
"suggest": {
"moneyphp/money": "To use the MoneyType"
},
"autoload": {
"psr-4": {
"Rollerworks\\Component\\Search\\": ""
},
"exclude-from-classmap": [
"Test/"
]
},
"autoload-dev": {
"psr-4": {
"Rollerworks\\Component\\Search\\Tests\\": "Tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "2.0-dev"
}
}
}