-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 809 Bytes
/
composer.json
File metadata and controls
46 lines (46 loc) · 809 Bytes
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
{
"name": "jord-jd/cachetphp",
"description": "cachet.php is a PHP client library for the Cachet status page",
"license": "LGPL-3.0-only",
"keywords": [
"cachet",
"javascript",
"js",
"library",
"api",
"cachet",
"status",
"cachet",
"status",
"page"
],
"require": {
"php": ">=5.4",
"guzzlehttp/guzzle": "~6.0",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"JordJD\\CachetPHP\\": "./"
}
},
"autoload-dev": {
"psr-4": {
"JordJD\\CachetPHP\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"replace": {
"divineomega/cachetphp": "self.version"
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
}
},
"require-dev": {
"phpunit/phpunit": "^9.6"
}
}