-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issues: #35
- Loading branch information
Showing
6 changed files
with
460 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<?php | ||
|
||
namespace Tresle\Mocky\Providers; | ||
|
||
use Illuminate\Support\ServiceProvider; | ||
use Illuminate\Support\Facades\Route; | ||
|
||
|
||
class MockyServiceProvider extends ServiceProvider | ||
{ | ||
const MODULE = "Mocky"; | ||
|
||
/** | ||
* Utilizado quando a aplicacao eh iniciada | ||
*/ | ||
public function boot() | ||
{ | ||
Route::namespace("Tresle\\".self::MODULE."\Http\Controllers") | ||
->middleware(["api"]) | ||
->group(__DIR__."/../Routes/api.php"); | ||
|
||
$this->loadMigrationsFrom(__DIR__."/../Migrations"); | ||
|
||
/** | ||
* Para utilizar na view: | ||
* | ||
* NOME_MODULO::NOME_ARQUIVO_TRADUCAO.CHAVE_ARRAY | ||
* {{Product::category.title}} | ||
* | ||
*/ | ||
$this->loadTranslationsFrom(__DIR__."/../lang", self::MODULE); | ||
} | ||
|
||
/** | ||
* Utilizada quando a aplicacao eh registrada | ||
*/ | ||
public function register() | ||
{ | ||
parent::register(); // TODO: Change the autogenerated stub | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?php | ||
|
||
|
||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
{ | ||
"openapi": "3.0.0", | ||
"info": { | ||
"title": "API.Produto", | ||
"description": "API responsável por informar detalhes dos produtos e coberturas comercializadas pela Mongeral Aegon e parcerias. Os produtos comercializados estão principalmente relacionados às vendas de seguros e previdências, e por isso possuem parâmetros relativos a essas características atuariais e legais.", | ||
"version": "1.0.0", | ||
"termsOfService": "http://swagger.io/terms/" | ||
}, | ||
"servers": [ | ||
{ | ||
"url": "http://127.0.0.1:8000/api/v1", | ||
"description": "Sandbox" | ||
} | ||
], | ||
"paths": { | ||
"/product": { | ||
"get": { | ||
"tags": [ | ||
"Produtos e Coberturas" | ||
], | ||
"summary": "Retorna informações dos fundos de um produto de previdência", | ||
"responses": { | ||
"200": { | ||
"description": "lista de fundos disponíveis para o produto", | ||
"content": { | ||
"application/json": { | ||
"schema": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"nome": { | ||
"type": "string", | ||
"example": "MONGERAL AEGON PRIVATE RF CONSERVADOR" | ||
}, | ||
"sigla": { | ||
"type": "string", | ||
"example": "MAITRF00" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"404": { | ||
"description": "Produto não encontrado." | ||
}, | ||
"500": { | ||
"description": "Erro não identificado" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"components": { | ||
"securitySchemes": { | ||
"bearerAuth": { | ||
"type": "http", | ||
"scheme": "bearer", | ||
"bearerFormat": "JWT" | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
openapi: 3.0.0 | ||
info: | ||
title: API.Produto | ||
description: >- | ||
API responsável por informar detalhes dos produtos e coberturas comercializadas pela | ||
Mongeral Aegon e parcerias. Os produtos comercializados estão principalmente relacionados às | ||
vendas de seguros e previdências, e por isso possuem parâmetros relativos a essas características atuariais e legais. | ||
version: 1.0.0 | ||
termsOfService: http://swagger.io/terms/ | ||
|
||
servers: | ||
- url: "http://127.0.0.1:8000/api/v1" | ||
description: Sandbox | ||
|
||
|
||
paths: | ||
'/product': | ||
get: | ||
tags: | ||
- Produtos e Coberturas | ||
|
||
summary: Retorna informações dos fundos de um produto de previdência | ||
responses: | ||
'200': | ||
description: lista de fundos disponíveis para o produto | ||
content: | ||
application/json: | ||
schema: | ||
type: array | ||
items: | ||
type: object | ||
properties: | ||
nome: | ||
type: string | ||
example: MONGERAL AEGON PRIVATE RF CONSERVADOR | ||
sigla: | ||
type: string | ||
example: MAITRF00 | ||
"404": | ||
description: Produto não encontrado. | ||
"500": | ||
description: Erro não identificado | ||
|
||
|
||
|
||
components: | ||
|
||
securitySchemes: | ||
bearerAuth: | ||
type: http | ||
scheme: bearer | ||
bearerFormat: JWT | ||
|