-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·44 lines (44 loc) · 1.11 KB
/
composer.json
File metadata and controls
executable file
·44 lines (44 loc) · 1.11 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
{
"name": "mobilerider/mobilerider-php-bootstrap",
"type": "library",
"description": "Base code for Mobilerider libraries and SDKs",
"version": "0.1.0-beta.19",
"keywords": ["mobilerider"],
"homepage": "http://www.mobilerider.com/",
"license": "MIT",
"authors": [
{
"name": "Michel Perez",
"email": "michel@mobilerider.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/m1ch3lp3r3z/laravel-helpers.git"
}
],
"autoload": {
"psr-4": {
"Mr\\Bootstrap\\": "src/",
"Mr\\BootstrapTests\\": "tests/"
},
"files": ["src/functions.php"]
},
"autoload-dev": {
"psr-4": {
"Akamai\\AnalyticsTest\\": "tests/"
}
},
"require": {
"php": ">=7.0",
"m1ch3lp3r3z/laravel-helpers": "dev-master",
"psr/log": "^1.0",
"guzzlehttp/psr7": "^1.4",
"guzzlehttp/promises": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^6.2",
"guzzlehttp/guzzle": "^6.3"
}
}