Download the PHP package fuwasegu/dir-json-server without Composer

On this page you can find all versions of the php package fuwasegu/dir-json-server. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package dir-json-server

Directory JSON Server

静的なディレクトリ構造を JSON Server として公開するためのツールです. 返却したいレスポンスを JSON ファイルとして配置することで, その JSON ファイルを返却する API を簡単に公開することができます.

インストール

仕様

contents/ に配置した JSON ファイルを API として公開します.ただし,ルートディレクトリは後述の yaml ファイルで変更可能です. 当該ディレクトリ直下が API のベースパスとなり,その直下に配置した JSON ファイルがそのままレスポンスとなります.

JSON ファイルは,必ず response.json という名前で配置してください.

本ツールは,GET のみをサポートしています.

利用例

コンテンツディレクトリを以下のように配置したとします.

また,contents/users/1/profile/response.json に以下のような JSON データが配置されていたとします.

このとき,GET http://localhost/users/1/profile にアクセスすると,

というレスポンスが返却されます.

つまり,

レスポンス

レスポンスの ContentType について,

サーバーの起動方法

利用可能なルートの確認

localhost:8000 にブラウザからアクセスすると,利用可能なルートの一覧が表示されます. こちらは,HTML で表示されます.

ルートは箇条書きに表示され,クリックすることでそのルートにアクセスすることができます.

API レスポンス

基本的に,存在するディレクトリの末端に配置された JSON ファイルがそのままレスポンスとして返却されます. もし,ディレクトリの末端に配置された JSON ファイルが存在しない場合は,ステータスコード 404 が返却されます. また,このとき以下のような json が返却されます.

デフォルトルートディレクトリとポートの設定変更

デフォルトのルートディレクトリとポート番号は、dir-json.yaml ファイルで変更可能です。

設計

採用技術

ディレクトリ構造

このプロジェクトは,以下のようなディレクトリ構造を持っています(一部省略)

名前空間

composer.json にて定義されている通り,src/ 配下のファイルは App\ 名前空間配下に配置されます.

アーキテクチャ

このプロジェクトは基本的にクリーンアーキテクチャを採用しています.

本アプリケーションは,DB を使わない代わりに静的なディレクトリ構造を JSON Server として公開するため,インフラ層ではファイルアクセスを行います.


All versions of dir-json-server with dependencies

PHP Build Version
Package Version
Requires php Version ^8.3
react/http Version ^1.10
symfony/yaml Version ^6.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package fuwasegu/dir-json-server contains the following files

Loading the files please wait ....