Coder Social home page Coder Social logo

paulus's Introduction

Paulus

A PHP micro-framework (well, more like a "mini" framework) for creating RESTful API services quickly and efficiently. Its meant to work as a sort of "boilerplate" for REST-like API services in PHP.

Getting Started

Attributions

paulus's People

Contributors

rican7 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

paulus's Issues

Nested string replace causing unnecessary removals in "Paulus::parse()"

Currently, the parse() method does a nested str_replace on the built-in "{ENDPOINT}" template key.

If the base-url is simply "/", though, this removes all slashes from the endpoint. Yea, bad.

Simply changing:

$processed_string = str_replace( '{ENDPOINT}',
    str_replace( $this->config['app-meta']['base_url'], '', parse_url($this->request->uri(), PHP_URL_PATH) ),
    $processed_string
);

to this:

$processed_string = str_replace( '{ENDPOINT}',
    ltrim( parse_url($this->request->uri(), PHP_URL_PATH), $this->config['app-meta']['base_url'] ),
    $processed_string
);

should do the trick.

Namespace issue on default "Exception" throw

The \Paulus\Paulus class contains a call to throw a new "Exception" in the abort method. Unfortunately, since \Paulus\Paulus is under a namespace, "Exception" isn't resolving.

Simply add a "use" statement to the top of the class for "\Exception", and profit.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.