100 lines
3.0 KiB
JSON
100 lines
3.0 KiB
JSON
{
|
|
"name": "joselfonseca/laravel-api",
|
|
"description": "Laravel API starter Kit will give you most of the boilerplate that you need for creating Laravel API's",
|
|
"keywords": [
|
|
"framework",
|
|
"laravel",
|
|
"Api",
|
|
"REST",
|
|
"oAuth2"
|
|
],
|
|
"license": "MIT",
|
|
"type": "project",
|
|
"authors": [
|
|
{
|
|
"name": "Jose Fonseca",
|
|
"email": "jose@ditecnologia.com",
|
|
"homepage": "https://joselfonseca.dev",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7.4",
|
|
"ext-json": "*",
|
|
"barryvdh/laravel-dompdf": "^0.9.0",
|
|
"fideloper/proxy": "^4.2",
|
|
"fruitcake/laravel-cors": "^2.0",
|
|
"guzzlehttp/guzzle": "^7.0.1",
|
|
"intervention/image": "^2.5",
|
|
"intervention/imagecache": "^2.4",
|
|
"laravel-lang/common": "^1.0",
|
|
"laravel/framework": "^8.0",
|
|
"laravel/passport": "^10.0",
|
|
"laravel/socialite": "^5.1",
|
|
"laravel/tinker": "^2.0",
|
|
"maatwebsite/excel": "^3.1",
|
|
"movemoveapp/laravel-dadata": "^1.0",
|
|
"phpoffice/phpword": "^1.0",
|
|
"seyyedam7/laravel-html-parser": "^3.1",
|
|
"spatie/laravel-fractal": "^5.8",
|
|
"spatie/laravel-permission": "^3.17",
|
|
"tomlerendu/laravel-convert-case-middleware": "^1.1"
|
|
},
|
|
"require-dev": {
|
|
"brianium/paratest": "^6.2",
|
|
"eduarguz/shift-php-cs": "dev-master",
|
|
"facade/ignition": "^2.5",
|
|
"fakerphp/faker": "^1.9.1",
|
|
"friendsofphp/php-cs-fixer": "^3.37",
|
|
"mockery/mockery": "^1.4.2",
|
|
"nunomaduro/collision": "^5.0",
|
|
"phpunit/phpunit": "^9.3.3"
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"preferred-install": "dist",
|
|
"sort-packages": true
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"dont-discover": []
|
|
}
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "app/",
|
|
"Database\\Factories\\": "database/factories/",
|
|
"Database\\Seeders\\": "database/seeders/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"scripts": {
|
|
"post-autoload-dump": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
|
"@php artisan package:discover --ansi"
|
|
],
|
|
"post-root-package-install": [
|
|
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
|
],
|
|
"post-create-project-cmd": [
|
|
"@php artisan key:generate --ansi"
|
|
],
|
|
"api-docs": [
|
|
"apibmerge docs/api/blueprint docs/api/apiblueprint.apib",
|
|
"aglio --theme-variables flatly --theme-template triple -i docs/api/blueprint/apidocs.apib -o resources/views/apidocs.blade.php"
|
|
],
|
|
"cs": [
|
|
"vendor/bin/php-cs-fixer fix --config=.php_cs.dist -vvv --using-cache=no"
|
|
],
|
|
"test": [
|
|
"php artisan test --parallel"
|
|
]
|
|
}
|
|
}
|