2017 © Pedro PelĂĄez
 

library restup-back

image

ibandominguez/restup-back

  • Saturday, June 17, 2017
  • by ibandominguez
  • Repository
  • 1 Watchers
  • 1 Stars
  • 10 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 14 Versions
  • 0 % Grown

The README.md

Restup

Build a rest api in a single file., (*1)

Use Example

<?php

require __DIR__.'/../vendor/autoload.php';

use IbanDominguez\RestUp\App;

App::create([
  'JWT_KEY' => 'supersecret',
  'DB_HOST' => 'localhost',
  'DB_NAME' => 'prueba',
  'DB_USER' => 'root',
  'DB_PASS' => '',
])
->auth([
  'admin@email.com' => 'admin'
])
->add('books', [
  ['title' => 'title', 'type' => 'string', 'rules' => 'required'],
  ['title' => 'date',  'type' => 'date',   'rules' => 'required|date'],
])
->add('posts', [
  ['title' => 'title', 'type' => 'string', 'rules' => 'required'],
  ['title' => 'body',  'type' => 'string'],
  ['title' => 'date',  'type' => 'date',   'rules' => 'date']
], [
  'except'    => ['show'],
  'protected' => ['save']
])
->run(true);

Tests

git clone https://github.com/ibandominguez/restup-back.git
cd restup-back
phpunit

Roadmap

  • Image uploads
  • JWT auth configurable routes

Contributors

  • IbĂĄn DomĂ­nguez

License

Mit, (*2)

The Versions

17/06 2017

dev-feature/relations

dev-feature/relations

  Sources   Download

The Requires

 

The Development Requires

by Avatar ibandominguez

28/05 2017

dev-master

9999999-dev

  Sources   Download

The Requires

 

The Development Requires

by Avatar ibandominguez

13/10 2016

v0.4.2

0.4.2.0

  Sources   Download

The Requires

 

The Development Requires

by Avatar ibandominguez

11/10 2016

v0.4.1

0.4.1.0

  Sources   Download

The Requires

 

The Development Requires

by Avatar ibandominguez

11/10 2016

dev-issues

dev-issues

  Sources   Download

The Requires

 

The Development Requires

by Avatar ibandominguez

10/10 2016

v0.4.0

0.4.0.0

  Sources   Download

The Requires

 

The Development Requires

by Avatar ibandominguez

10/10 2016

v0.3.0

0.3.0.0

  Sources   Download

The Requires

 

The Development Requires

by Avatar ibandominguez

06/10 2016

v0.2.2

0.2.2.0

  Sources   Download

The Requires

 

The Development Requires

by Avatar ibandominguez

06/10 2016

v0.2.1

0.2.1.0

  Sources   Download

The Requires

 

The Development Requires

by Avatar ibandominguez

06/10 2016

v0.2.0

0.2.0.0

  Sources   Download

The Requires

 

The Development Requires

by Avatar ibandominguez

06/10 2016

v0.1.2

0.1.2.0

  Sources   Download

The Requires

 

The Development Requires

by Avatar ibandominguez

06/10 2016

dev-tests-coverage

dev-tests-coverage

  Sources   Download

The Requires

 

The Development Requires

by Avatar ibandominguez

06/10 2016

v0.1.1

0.1.1.0

  Sources   Download

The Requires

 

The Development Requires

by Avatar ibandominguez

06/10 2016

v0.1.0

0.1.0.0

  Sources   Download

The Requires

 

The Development Requires

by Avatar ibandominguez