-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·52 lines (52 loc) · 1.37 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
{
"name": "mobilerider/akamai-php-sdk",
"type": "library",
"description": "PHP SDK for Akamai {Open} APIs",
"version": "0.1.0-beta.1",
"keywords": ["akamai", "api", "live", "stream", "media", "delivery", "msl", "papi"],
"homepage": "https://developer.akamai.com/api",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Michel Perez",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Akamai\\Sdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Akamai\\SdkTests\\": "tests/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/m1ch3lp3r3z/AkamaiOPEN-edgegrid-php-client"
},
{
"type": "vcs",
"no-api": true,
"url": "https://github.com/mobilerider/mobilerider-php-bootstrap.git"
},
{
"type": "vcs",
"no-api": true,
"url": "https://github.com/m1ch3lp3r3z/laravel-helpers.git"
}
],
"require": {
"php": ">=7.0",
"akamai-open/edgegrid-client": "dev-master",
"mobilerider/mobilerider-php-bootstrap": "*",
"beberlei/assert": "^3.1"
},
"require-dev": {
"phpunit/phpunit": "^6.2"
}
}