-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathcomposer.json
59 lines (59 loc) · 1.45 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
55
56
57
58
59
{
"name": "specialtactics/l5-api",
"description": "Dependencies for the Laravel API Boilerplate package",
"keywords": ["laravel", "boilerplate", "api"],
"license": "MIT",
"authors": [
{
"name": "Max Snow",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"api-ecosystem-for-laravel/dingo-api": "^4.1",
"php-open-source-saver/jwt-auth": "^2.1",
"illuminate/support": "^10.0",
"ramsey/uuid": "^4.3",
"nesbot/carbon": "^2.0|^3.0"
},
"require-dev": {
"ext-json": "*",
"beyondcode/laravel-dump-server": "^1.9",
"fakerphp/faker": "^1.18",
"mockery/mockery": "^1.5",
"nunomaduro/collision": "^7.10",
"phpunit/phpunit": "^10.1",
"orchestra/testbench": "^8.20",
"laravel/legacy-factories": "^1.0"
},
"autoload": {
"psr-4": {
"Specialtactics\\L5Api\\": "src/"
},
"files": ["helpers/helpers.php"]
},
"autoload-dev": {
"psr-4": {
"Specialtactics\\L5Api\\Tests\\": "test/tests/",
"Specialtactics\\L5Api\\Test\\Mocks\\": "test/mocks/",
"App\\": "test/app/"
},
"classmap": ["test/database/seeds/", "test/database/factories/"]
},
"extra": {
"laravel": {
"providers": [
"Specialtactics\\L5Api\\L5ApiServiceProvider"
]
}
},
"archive": {
"exclude": ["/test"]
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "./vendor/bin/phpunit --colors=always --testdox"
}
}