This repository has been archived by the owner on Apr 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
56 lines (56 loc) · 1.46 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
{
"name": "snider/php-cloud-dns",
"description": "A PHP Binding to the Rackspace Cloud DNS API Created for my own use, since no public php API lib was out at that time available.",
"version": "1.0.0",
"type": "library",
"keywords": [
"rackspace",
"cloud",
"cloud dns"
],
"minimum-stability": "stable",
"license": "GPL-3.0",
"autoload": {
"psr-4": {
"Snider\\CloudDns\\": "src/"
}
},
"authors": [
{
"name": "Paul Lashbrook",
"email": "[email protected]",
"role": "developer"
},
{
"name": "Alon Ben David",
"url": "https://github.com/alonbendavid",
"role": "developer"
},
{
"name": "Linus",
"url": "https://github.com/dotcomfy",
"role": "contributor"
},
{
"name": "Diego Iglesias",
"url": "https://github.com/diegoiglesias",
"role": "contributor"
},
{
"name": "Mark Loker",
"url": "https://github.com/marklocker",
"role": "contributor"
},
{
"name": "Alex Shepherd",
"url": "https://github.com/alexshepherd-hydrant",
"role": "contributor"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/snider/php-cloudDNS"
}
]
}