-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
42 lines (42 loc) · 1.18 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
{
"name": "danschultzer/monit-graph",
"description": "Graph Monit data",
"homepage": "https://github.com/danschultzer/monit-graph",
"keywords": ["monit", "graph"],
"license": "BSD 3-clause",
"require": {
"php": ">=5.6.0",
"slim/slim": "^3.1",
"slim/php-view": "^2.0",
"monolog/monolog": "^1.17",
"tuupola/slim-basic-auth": "^2.2",
"curl/curl": "^1.6"
},
"require-dev": {
"phpunit/phpunit": ">=4.8",
"squizlabs/php_codesniffer": "^2.5"
},
"authors": [
{
"name": "Dan Schultzer",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"MonitGraph\\": "src/MonitGraph"
}
},
"scripts": {
"server": "php -S 0.0.0.0:8080 -t src/web/public src/web/public/index.php",
"cron": "php src/scripts/cron.php",
"build-massive-data": "php tests/scripts/build_massive_data.php",
"reverse-xml": "php src/scripts/reverse_xml.php",
"test": [
"@phpunit",
"@phpcs"
],
"phpunit": "php vendor/bin/phpunit",
"phpcs": "php vendor/bin/phpcs"
}
}