PHPackages                             raframework/raframework - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. raframework/raframework

ActiveLibrary[Framework](/categories/framework)

raframework/raframework
=======================

A RESTful API framework

v0.0.13(8y ago)5421PHPPHP &gt;=5.4.0

Since Jan 12Pushed 8y ago3 watchersCompare

[ Source](https://github.com/raframework/raframework)[ Packagist](https://packagist.org/packages/raframework/raframework)[ RSS](/packages/raframework-raframework/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (10)DependenciesVersions (14)Used By (0)

raframework
===========

[](#raframework)

A RESTful API framework for the PHP language.

Getting Started
---------------

[](#getting-started)

1. Create a raframework project name `raproj`

    ```
    $ mkdir raproj && cd raproj
    ```
2. Create a `composer.json` file with the following contents:

    ```
    {
      "require": {
        "raframework/raframework": "0.0.10"
      },
      "autoload": {
        "psr-4": {
          "App\\": "App/"
        }
      }
    }
    ```
3. Install the raframework by [Composer](https://getcomposer.org/)

    ```
    $ composer install
    ```
4. Make the resource classes directory

    ```
    $ mkdir -p App/Resource
    ```
5. Create an `App/Resource/Users.php` file with the following contents:

    ```
