-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 915 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
{
"name": "pierre-tranchard/cron-monitor-api-bundle",
"license": "MIT",
"type": "symfony-bundle",
"description": "The server side for exposing an API to monitor your cron via the cron-monitor-bundle",
"authors": [
{
"name": "Pierre Tranchard",
"email": "[email protected]"
}
],
"keywords": ["cron", "api", "monitoring", "mongodb"],
"autoload": {
"psr-4": {
"Tranchard\\CronMonitorApiBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Tranchard\\CronMonitorApiBundle\\Tests\\": ""
}
},
"require": {
"php": ">=7.1.3",
"psr/log": "^1.0",
"alcaeus/mongo-php-adapter": "^1.1",
"doctrine/mongodb-odm-bundle": "^3.4",
"symfony/symfony": "^3.0 || ^4.0",
"symfony/twig-bundle": "^3.0 || ^4.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^3.0 || ^4.0",
"phpunit/phpunit": "^6.0"
}
}