-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
45 lines (45 loc) · 1.03 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
{
"name": "specialtactics/l5-api",
"description": "Dependencies for the Laravel 5 API Boilerplate package",
"keywords": ["laravel", "boilerplate", "api"],
"license": "MIT",
"authors": [
{
"name": "Max Snow",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.3",
"dingo/api": "^2",
"tymon/jwt-auth": "^1.0",
"webpatser/laravel-uuid": "^3.0",
"ramsey/uuid": "^3.0",
"atehnix/laravel-stubs": "~6.0"
},
"require-dev": {
"beyondcode/laravel-dump-server": "^1.0",
"fzaninotto/faker": "^1.4",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^2.0",
"phpunit/phpunit": "^7.5"
},
"autoload": {
"psr-4": {
"Specialtactics\\L5Api\\": "src/"
},
"files": ["helpers/helpers.php"]
},
"extra": {
"laravel": {
"providers": [
"Specialtactics\\L5Api\\L5ApiServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "./vendor/bin/phpunit --colors=always -v --testdox"
}
}