Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 547 Bytes

File metadata and controls

24 lines (21 loc) · 547 Bytes

api-php-slim-framework

API RESTful com PHP Slim Framework

Instalando

git clone https://github.com/ClubeDosGeeksCoding/api-php-slim-framework.git

Instale as dependencias com composer

composer install

Banco de dados

CREATE DATABASE api;
CREATE TABLE pessoa (
	id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY,
	nome VARCHAR(30) NOT NULL,
	email VARCHAR(50),
	dt_cadastro DATETIME DEFAULT CURRENT_TIMESTAMP
)