-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 956 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
{
"name": "mattkoch614/medidata-rws-php-lib",
"description": "A Medidata RAVE Web Services (RWS) library for PHP.",
"keywords": ["medidata", "rws", "rave"],
"license": "MIT",
"authors": [
{
"name": "Matthew Koch",
"email": "matthewjameskoch@gmail.com"
}
],
"type": "project",
"require": {
"php": ">=7.1",
"danielstjules/stringy": "~3.1.0",
"guzzlehttp/guzzle": "~6.0",
"nesbot/carbon": "^1.22",
"mockery/mockery": "^1.0",
"tightenco/collect": "^5.5",
"sabre/xml": "^2.0",
"goetas-webservices/xsd2php-runtime":"^0.2.2"
},
"require-dev": {
"larapack/dd": "^1.1",
"goetas-webservices/xsd2php":"^0.3"
},
"autoload": {
"psr-4": {
"Medidata\\RwsPhp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Medidata\\RwsPhp\\Tests\\": "tests/"
}
}
}