forked from kevin-mitchell/alexa-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 927 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
{
"name": "develpr/alexa-app",
"description": "Set of classes to make creating simple Amazon Echo Alexa Apps easier with Lumen and to a lesser extent Laravel",
"license": "MIT",
"keywords": ["echo", "Amazon Echo", "Alexa", "AlexaApp", "Lumen", "Laravel"],
"authors": [
{
"name": "Kevin Mitchell",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/routing": "5.4.*"
},
"require-dev": {
"phpunit/phpunit": "~5.7",
"mockery/mockery": "^0.9.9"
},
"autoload": {
"psr-4": {
"Develpr\\AlexaApp\\": "src"
}
},
"autoload-dev": {
"classmap": [
"tests/"
],
"psr-4": {
"Develpr\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.4-dev"
}
}
}