-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.28 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
53
54
{
"name": "glokon/gekko",
"description": "",
"keywords": [
"gekko", "url", "shortener", "laravel", "glokon"
],
"license": "MIT",
"support": {
"issues": "https://github.com/GLOKON/GEKKO/issues",
"source": "https://github.com/GLOKON/GEKKO"
},
"homepage": "http://gek.pw",
"authors": [
{
"name": "Daniel McAssey",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "4.2.*",
"illuminate/database": "*",
"illuminate/auth": "4.2.*",
"chrisbjr/api-guard": "~1.0",
"ceesvanegmond/minify": "2.0.*"
},
"require-dev": {
"orchestra/testbench": "2.2.*",
"mockery/mockery": "^0.9.4",
"phpunit/phpunit": "^4.7.6"
},
"autoload": {
"classmap": [
"src/migrations",
"src/controllers",
"src/models",
"src/lang"
],
"psr-4": {
"GLOKON\\GEKKO\\": "src/GLOKON/GEKKO/"
}
},
"autoload-dev": {
"psr-4": {
"GLOKON\\Tests\\GEKKO\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
}
},
"minimum-stability": "stable"
}