forked from rollersearch/search-api-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.39 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.39 KB
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
{
"name": "rollerworks/search-api-platform",
"description": "API-Platform integration bridge for RollerworksSearch",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Sebastiaan Stok",
"email": "s.stok@rollerscapes.net"
}
],
"require": {
"php": "^7.1",
"rollerworks/search-processor": "^0.2.1",
"rollerworks/search": "^2.0@dev,>=2.0.0-ALPHA4",
"rollerworks/uri-encoder": "^1.1.0 || ^2.0",
"api-platform/core": "^2.0.10",
"symfony/http-foundation": "^3.2.6 || ^4.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^3.3.6 || ^4.0",
"rollerworks/search-doctrine-orm": "^2.0,>2.0.0-ALPHA3",
"doctrine/orm": "^2.5.6",
"phpunit/phpunit": "^6.3"
},
"autoload": {
"psr-4": {
"Rollerworks\\Component\\Search\\ApiPlatform\\": "src/"
},
"exclude-from-classmap": [
"tests/"
]
},
"autoload-dev": {
"psr-4": {
"Rollerworks\\Component\\Search\\ApiPlatform\\Tests\\": "tests/",
"ApiPlatform\\Core\\Tests\\Fixtures\\TestBundle\\Entity\\": "vendor/api-platform/core/tests/Fixtures/TestBundle/Entity"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}