forked from paysera/lib-rest-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
28 lines (28 loc) · 839 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
{
"name": "paysera/lib-rest-bundle",
"description": "Helps easily convert your regular controller to RESTful controller",
"autoload": {
"psr-4": {
"Paysera\\Bundle\\RestBundle\\": ""
}
},
"require": {
"php": "^7.1 || ^8.0",
"paysera/lib-serializer": "^3.0",
"doctrine/orm": "^2.0",
"symfony/config": "^3.0 || ^4.0",
"symfony/dependency-injection": "^3.0 || ^4.0",
"symfony/validator": "^3.0 || ^4.0",
"symfony/security-core": "^3.0 || ^4.0",
"symfony/routing": "^3.0 || ^4.0",
"symfony/http-foundation": "^3.0 || ^4.0",
"symfony/http-kernel": "^3.0 || ^4.0"
},
"config": {
"bin-dir": "bin"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"mockery/mockery": "^1.2"
}
}