-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·50 lines (50 loc) · 1.19 KB
/
composer.json
File metadata and controls
executable file
·50 lines (50 loc) · 1.19 KB
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
{
"name": "mobilerider/cvent-php-sdk",
"type": "library",
"description": "PHP client library to consume Cvent services",
"version": "0.1.0-alpha.1",
"keywords": [
"Cvent",
"api",
"registration",
"atendee",
"event"
],
"license": "MIT",
"authors": [
{
"name": "Yojahny Chavez",
"email": "yojahnychavez@gmail.com"
},
{
"name": "Michel Perez",
"email": "michel@mobilerider.com"
}
],
"autoload": {
"psr-4": {
"Mr\\CventSdk\\": "src/",
"Mr\\CventSdkTest\\": "tests/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/mobilerider/mobilerider-php-bootstrap.git"
},
{
"type": "vcs",
"url": "https://github.com/m1ch3lp3r3z/laravel-helpers.git"
}
],
"require": {
"php": "^7.0",
"guzzlehttp/guzzle": "~6.0",
"mobilerider/mobilerider-php-bootstrap": "*"
},
"require-dev": {
"phpunit/phpunit": "^6.2",
"vlucas/phpdotenv": "^4.0"
},
"minimum-stability": "dev"
}