-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
36 lines (36 loc) · 1022 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
35
36
{
"name": "osm/easy-rest-bundle",
"type": "symfony-bundle",
"description": "Simple and lightweight bundle provides JSON based request / response and exception handling support to develop RESTful API's with Symfony.",
"keywords": [
"rest",
"rest-api",
"json"
],
"license": "MIT",
"authors": [
{
"name": "Osman Ungur",
"email": "[email protected]"
}
],
"require": {
"php": "^5.5.9|~7.0",
"symfony/config": "^2.7|^3.0|^4.0",
"symfony/debug": "^2.7|^3.0|^4.0",
"symfony/dependency-injection": "^2.7|^3.0|^4.0",
"symfony/event-dispatcher": "^2.7|^3.0|^4.0",
"symfony/framework-bundle": "^2.7|^3.0|^4.0",
"symfony/http-foundation": "^2.7|^3.0|^4.0",
"symfony/http-kernel": "^2.7|^3.0|^4.0",
"symfony/property-info": "^2.7|^3.0|^4.0",
"phpdocumentor/reflection-docblock": "^4.3"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Osm\\EasyRestBundle\\": ""
}
}
}