Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/furiosojack/responsejsonphp
Realiza Response Json con el codigo y mensaje de estado HTTP
https://github.com/furiosojack/responsejsonphp
Last synced: 16 days ago
JSON representation
Realiza Response Json con el codigo y mensaje de estado HTTP
- Host: GitHub
- URL: https://github.com/furiosojack/responsejsonphp
- Owner: FuriosoJack
- License: mit
- Created: 2018-10-02T15:15:19.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-11T22:10:14.000Z (about 6 years ago)
- Last Synced: 2024-11-20T19:42:10.953Z (about 1 month ago)
- Language: PHP
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ResponseJsonPHP
Realiza Response Json con el codigo y mensaje de estado HTTP## Instalacion
Ejecutar en la consola dentro en la raiz del proyecto el comando:
```bash
$ composer require furiosojack/responsejsonphp
```o añadiendo directamente el el archivo `composer.json`
```json
{
"require": {
"furiosojack/responsejsonphp": "~0.1"
}
}
```## Uso (Ejemplos)
```php
'Error en la solicitud',
'description' => 'Faltan parametros'
)
);
```Response Output:
HTTP/1.1 400 Bad Request
```json
{"title": "Error en la solicitud", "description": "Faltan parametros" }
```