-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
39 lines (39 loc) · 1.08 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
{
"name": "paysera/lib-rest-bundle",
"description": "Helps easily convert your regular controller to RESTful controller",
"autoload": {
"psr-4": {
"Paysera\\Bundle\\RestBundle\\": ""
}
},
"require": {
"php": ">=7.4",
"paysera/lib-serializer": "^3.0",
"doctrine/orm": "^2.0",
"symfony/config": "^4.0 || ^5.0",
"symfony/dependency-injection": "^4.0 || ^5.0",
"symfony/validator": "^4.0 || ^5.0",
"symfony/security-core": "^4.0 || ^5.0",
"symfony/routing": "^4.0 || ^5.0",
"symfony/http-foundation": "^4.0 || ^5.0",
"symfony/http-kernel": "^4.0 || ^5.0",
"doctrine/persistence": "^3.2"
},
"config": {
"bin-dir": "bin"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"mockery/mockery": "^1.2"
},
"scripts": {
"test": [
"@test:phpunit"
],
"test:phpunit": "bin/phpunit"
},
"scripts-descriptions": {
"test": "Runs all tests",
"test:phpunit": "Runs PHPUnit tests"
}
}