-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.11 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
{
"name": "deveodk/laravel-api-authenticator",
"type": "library",
"description": "Api authentication made simple",
"keywords": [
"deveodk",
"api",
"authentication",
"JWT"
],
"homepage": "https://github.com/Deveodk/laravel-api-authenticator",
"license": "MIT",
"authors": [
{
"name": "Jason Kelly",
"email": "[email protected]",
"homepage": "https://deveo.io",
"role": "Developer"
}
],
"require": {
"php" : "~5.6|~7.0",
"optimus/distributed-laravel": "0.1.*",
"tymon/jwt-auth": "0.5.*",
"spatie/laravel-fractal": "^5.0.0",
"facebook/graph-sdk": "^5.6",
"spatie/laravel-medialibrary": "^5.0.0",
"google/apiclient": "^2.0",
"spatie/laravel-permission": "^2.3",
"league/flysystem-aws-s3-v3": "^1.0"
},
"require-dev": {
"phpunit/phpunit" : "~4.0||~5.0||~6.0",
"squizlabs/php_codesniffer": "^2.3"
},
"autoload": {
"psr-4": {
"DeveoDK\\LaravelApiAuthenticator\\": "src"
}
},
"autoload-dev": {
"psr-4": {
}
},
"scripts": {
"test": "phpunit"
},
"config": {
"sort-packages": true
}
}