-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.21 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
{
"name": "rollerworks/search-api-platform",
"description": "API-Platform integration bridge for RollerworksSearch",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Sebastiaan Stok",
"email": "s.stok@rollerscapes.net"
}
],
"require": {
"php": ">=8.1",
"api-platform/core": "^2.0.10 || ^3.2",
"rollerworks/search": ">=2.0.0-BETA2 ^2.0@dev",
"rollerworks/uri-encoder": "^1.1.0 || ^2.0",
"symfony/http-foundation": "^6.4 || ^7.0"
},
"require-dev": {
"doctrine/orm": "^2.5.6",
"phpunit/phpunit": "^6.3",
"rollerworks/search-doctrine-orm": ">=2.0.0-BETA2 ^2.0@dev",
"symfony/phpunit-bridge": "^6.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Rollerworks\\Component\\Search\\ApiPlatform\\": ""
},
"exclude-from-classmap": [
"Tests/"
]
},
"autoload-dev": {
"psr-4": {
"Rollerworks\\Component\\Search\\ApiPlatform\\Tests\\": "Tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "2.0-dev"
}
}
}