-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (38 loc) · 1010 Bytes
/
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
{
"name": "pavankataria/boilerplate-api",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/pavankataria/boilerplate-api"
}
],
"description": "Boiler plate classes aiding API creation for Laravel, Lumen, and all your other PHP projects.",
"type": "library",
"require": {
"laravel/framework": "^8.83",
"ramsey/uuid": "^4.2",
"league/fractal": "^0.15.0"
},
"license": "MIT",
"authors": [
{
"name": "Pavan Kataria",
"email": "info@pavankataria.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"orchestra/testbench": "3.*",
"phpunit/phpcov": "~5.0",
"phpunit/phpunit": "^9.5.10"
},
"autoload": {
"psr-4" : {
"PavanKataria\\BoilerplateApi\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {"PavanKataria\\BoilerplateApi\\Test\\": "tests/"}
}
}