-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
39 lines (38 loc) · 917 Bytes
/
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
{
"name": "artistan/revive-xmlrpc",
"description": "package of the library classes to provide XmlRpc routines for accessing revive ad servers",
"homepage": "https://github.com/Artistan/revive-xmlrpc",
"type": "library",
"require": {
"phpxmlrpc/phpxmlrpc": "4.3.1",
"illuminate/support": "5.6.*"
},
"require-dev": {
"victorjonsson/markdowndocs": "1.3.*"
},
"keywords": [
"revive",
"adsserver",
"api",
"xmlrpc"
],
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Charles Peterson",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Artistan\\ReviveXmlRpc\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Artistan\\ReviveXmlRpc\\Provider"
]
}
}
}