-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 850 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 850 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
{
"name": "salernolabs/rescuegroups",
"description": "An unofficial PHP rescuegroups.org HTTP API SDK.",
"type": "framework",
"keywords": [],
"homepage": "http://www.salernolabs.com/",
"time": "2017-11-28",
"license": "MIT",
"authors": [
{
"name": "Eric Salerno",
"email": "ericsalerno@gmail.com",
"homepage": "http://www.ericsalerno.com/",
"role": "Architect"
}
],
"support":{
"email": "salernolabs@gmail.com"
},
"config": {
"preferred-install": "dist"
},
"require-dev": {
"phpunit/phpunit": "^6.4"
},
"require": {
"guzzlehttp/guzzle": "^6.3"
},
"autoload": {
"psr-4": {
"RescueGroups\\": "src/",
"RescueGroups\\Tests\\": "tests/"
}
}
}