-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
69 lines (69 loc) · 1.61 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "orca-services/cakephp-heartbeat",
"description": "A CakePHP plugin providing an application heartbeat status page with configurable sensors",
"type": "cakephp-plugin",
"keywords":[
"cakephp",
"plugin",
"heartbeat",
"status",
"sensor"
],
"homepage": "https://github.com/orca-services/cakephp-heartbeat",
"license": "MIT",
"authors": [
{
"name": "Marc Würth",
"homepage": "https://github.com/ravage84/",
"email": "[email protected]",
"role": "Lead developer"
},
{
"name": "Livia Scapin",
"homepage": "https://github.com/liviascapin",
"role": "Co Developer"
},
{
"name": "Other contributors",
"homepage": "https://github.com/orca-services/cakephp-heartbeat/graphs/contributors",
"role": "Contributors"
}
],
"support": {
"source": "https://github.com/orca-services/cakephp-heartbeat",
"issues": "https://github.com/orca-services/cakephp-heartbeat/issues"
},
"require": {
"php": ">=7.0.0",
"cakephp/cakephp": "^3.7"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^3.1",
"cakephp/migrations": "^1.0.0|^2.0.0",
"phpunit/phpunit": "^5.7|^6.5"
},
"autoload": {
"psr-4": {
"OrcaServices\\Heartbeat\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"OrcaServices\\Heartbeat\\Test\\": "tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
},
"scripts": {
"check": [
"@test",
"@cs-check"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit",
"test-coverage": "phpunit --coverage-html build/coverage"
},
"config": {
"sort-packages": true
}
}