-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 2.16 KB
/
Copy pathcomposer.json
File metadata and controls
72 lines (72 loc) · 2.16 KB
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
70
71
72
{
"name": "cronitorex/php",
"description": "Official PHP SDK for Cronitorex: cron job, heartbeat and uptime monitoring. Ping API and Management API clients with typed errors, on any PSR-18 HTTP client.",
"keywords": [
"cronitorex",
"cron",
"monitoring",
"heartbeat",
"uptime",
"sdk",
"dead-mans-switch"
],
"license": "MIT",
"homepage": "https://cronitorex.com",
"support": {
"docs": "https://docs.cronitorex.com"
},
"require": {
"php": "^8.1",
"ext-json": "*",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.1|^2.0",
"psr/log": "^2.0|^3.0",
"php-http/discovery": "^1.19"
},
"require-dev": {
"dragonmantank/cron-expression": "^3.3",
"friendsofphp/php-cs-fixer": "^3.64",
"phpunit/phpunit": "^10.0|^11.0",
"php-http/mock-client": "^1.6",
"guzzlehttp/guzzle": "^7.8",
"guzzlehttp/psr7": "^2.6",
"symfony/yaml": "^6.4|^7.0",
"phpstan/phpstan": "^2.0"
},
"suggest": {
"dragonmantank/cron-expression": "Required to derive intervals from cron expressions in ensure(); pass intervalSeconds without it",
"guzzlehttp/guzzle": "Default PSR-18 client; the SDK configures sane timeouts for it automatically",
"symfony/yaml": "Required for YAML bundle files in applyFromFile()/exportToFile(); JSON works without it"
},
"autoload": {
"psr-4": {
"Cronitorex\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cronitorex\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"analyse": "phpstan analyse",
"cs": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"authors": [
{
"name": "Cronitorex",
"email": "hello@cronitorex.com",
"homepage": "https://cronitorex.com"
}
]
}