-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
47 lines (47 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
40
41
42
43
44
45
46
47
{
"name": "nixilla/api-logger-bundle",
"type": "symfony-bundle",
"description": "API logger bundle help your app with API calls monitoring",
"keywords": [
"api",
"logging"
],
"homepage": "https://github.com/nixilla/api-logger-bundle",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Janusz Slota",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6",
"ext-json": "*",
"symfony/framework-bundle": "~2.3||~3||~4||~5",
"kriswallsmith/buzz": "^1",
"twig/twig": "^3.0"
},
"require-dev" :{
"phpspec/phpspec": "^6",
"pdepend/pdepend": "^2.6.1",
"phploc/phploc": "^5.0",
"phpmd/phpmd": "^2.8.1",
"sebastian/phpcpd": "^4.1",
"friends-of-phpspec/phpspec-code-coverage": "^4.3.2",
"php-coveralls/php-coveralls": "^2.2",
"symfony/expression-language": "~2.3||~3||~4||~5",
"twilio/sdk": "^5.42"
},
"autoload": {
"psr-4": {
"Nixilla\\Api\\LoggerBundle\\": "src/"
}
},
"config": {
"bin-dir": "bin",
"platform": {
"php": "7.3"
}
}
}