-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.71 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
60
61
62
63
{
"name": "uttamrabadiya/api-version-manager",
"description": "Simplify Laravel API versioning with ease. No more separate controllers—just flexibility, fallbacks, and version-specific components.",
"keywords": [
"uttamrabadiya",
"api-version-manager",
"laravel-package",
"api-versioning"
],
"homepage": "https://github.com/uttamrabadiya/api-version-manager",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Uttam Rabadiya",
"email": "mail@uttam.dev",
"homepage": "https://uttam.dev",
"role": "Developer"
},
{
"name": "Divyank Munjapara",
"email": "mail@divyank.dev",
"role": "Developer"
}
],
"require": {
"laravel/framework": "^8.0|^9.0|^10.0"
},
"require-dev": {
"nunomaduro/collision": "^5.10",
"orchestra/testbench": "^6.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.0|^10.0"
},
"autoload": {
"psr-4": {
"UttamRabadiya\\ApiVersionManager\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"UttamRabadiya\\ApiVersionManager\\Tests\\": "tests"
}
},
"scripts": {
"test:types": "phpstan analyse --ansi --memory-limit 256M",
"test:unit": "phpunit --colors=always -d memory_limit=1408M",
"test": [
"@test:types",
"@test:unit"
]
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"UttamRabadiya\\ApiVersionManager\\ApiVersionManagerServiceProvider"
]
}
}
}