-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
34 lines (34 loc) · 854 Bytes
/
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
{
"name": "check24/apitk-url-bundle",
"version": "1.0.7",
"license": "MIT",
"type": "symfony-bundle",
"description": "This bundle provides filter, sorting and pagination for RESTful API's",
"authors": [
{
"name": "Michael Wolf",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Shopping\\ApiTKUrlBundle\\": ""
},
"exclude-from-classmap": [
"Tests/"
]
},
"require": {
"php": "^7.1.3",
"symfony/config": "^4.1",
"symfony/dependency-injection": "^4.1",
"symfony/http-kernel": "^4.1",
"symfony/framework-bundle": "^4.1",
"doctrine/annotations": "^1.6",
"doctrine/orm": "^2.6",
"nelmio/api-doc-bundle": "^3.2",
"sensio/framework-extra-bundle": "^5.1",
"check24/apitk-common-bundle": "^1.0",
"check24/apitk-header-bundle": "^1.0"
}
}