forked from CodeForCuritiba/politikei_api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·49 lines (49 loc) · 1.21 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
{
"name": "Politikei API",
"description": "The Politikei API.",
"keywords": ["framework", "laravel", "lumen", "politikei"],
"license": "MIT",
"type": "project",
"minimum-stability": "dev",
"prefer-stable" : true,
"repositories": [
{
"type": "git",
"url": "https://github.com/tymondesigns/jwt-auth/"
}
],
"require": {
"php": ">=5.5.9",
"laravel/lumen-framework": "5.2.*",
"vlucas/phpdotenv": "^2.3",
"laravel-doctrine/orm": "1.2.*",
"laravel/socialite": "^2.0",
"basicit/lumen-vendor-publish": "^1.0",
"illuminate/routing": "^5.2",
"palanik/lumen-cors": "dev-master"
},
"require-dev": {
"tymon/jwt-auth": "dev-develop",
"fzaninotto/faker": "~1.4",
"phpunit/phpunit": "~4.0"
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": [
"app/Support/helpers.php"
]
},
"autoload-dev": {
"classmap": [
"tests/",
"database/"
]
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
]
}
}