Download the PHP package jmhc/laravel-api without Composer

On this page you can find all versions of the php package jmhc/laravel-api. 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 laravel-api

目录

安装配置

使用以下命令安装:

发布文件[可选]:

使用说明

环境变量值参考:env

restful参考: restful

快速使用

  1. 安装
  2. 发布配置[可选]
  3. 注册中间件
  4. 继承异常处理程序
  5. 使用路由服务提供者
  6. 示例代码

中间件

异常处理

使用路由服务提供者

示例代码

控制器

模型

服务层(逻辑层)

控制器

需继承 Jmhc\Restful\Controllers\BaseController

模型

普通模型

需继承 Jmhc\Restful\Models\BaseModel

中间表模型

需继承 Jmhc\Restful\Models\BasePivot

服务层(逻辑层)

需继承 Jmhc\Restful\Services\BaseService

中间件

用法加粗为必须调用

中间件 别名 用法 需要实现的契约或继承模型
Jmhc\Restful\Middleware\ParamsHandlerMiddleware jmhc.params.handler 参数处理 ---
Jmhc\Restful\Middleware\ConvertEmptyStringsToNullMiddleware jmhc.convert.empty.strings.to.null 转换空字符串为null ---
Jmhc\Restful\Middleware\TrimStringsMiddleware jmhc.trim.strings 清除字符串空格 ---
Jmhc\Restful\Middleware\RequestLockMiddleware jmhc.request.lock 请求锁定 ---
Jmhc\Restful\Middleware\RequestLogMiddleware jmhc.request.log 记录请求日志(debug) ---
Jmhc\Restful\Middleware\CheckVersionMiddleware jmhc.check.version 检测应用版本 Jmhc\Restful\Contracts\VersionModelInterface
Jmhc\Restful\Models\VersionModel
Jmhc\Restful\Middleware\CheckSignatureMiddleware jmhc.check.signature 验证请求签名 ---
Jmhc\Restful\Middleware\CheckTokenMiddleware jmhc.check.token 检测token,设置用户数据 Jmhc\Restful\Contracts\UserModelInterface
Jmhc\Restful\Models\UserModel
Jmhc\Restful\Middleware\CheckSdlMiddleware jmhc.check.sdl 单设备登录,需要复写 Jmhc\Restful\Handlers\ExceptionHandler->sdlHandler() ---

异常处理

App\Exceptions\Handler 继承 Jmhc\Restful\Handlers\ExceptionHandler

其他异常捕获调用父类 response() 方法并重写,参考 Jmhc\Restful\Handlers\ExceptionHandler->response()

服务提供者

API服务提供者

Jmhc\Restful\Providers\JmhcApiServiceProvider

契约服务提供者

Jmhc\Restful\Providers\JmhcContractServiceProvider

路由服务提供者

Jmhc\Restful\Providers\JmhcRouteServiceProvider

默认不启用

trait介绍

RequestInfoTrait.php

Jmhc\Restful\Traits\RequestInfoTrait

请求信息绑定

使用类:

ResourceControllerTrait.php

Jmhc\Restful\Traits\ResourceControllerTrait

资源控制器 trait

ResourceServiceTrait.php

Jmhc\Restful\Traits\ResourceServiceTrait

资源服务 trait

ResultThrowTrait.php

Jmhc\Restful\Traits\ResultThrowTrait

异常抛出辅助

UserInfoTrait.php

Jmhc\Restful\Traits\UserInfoTrait

用户信息绑定

使用类:

工具类介绍

Agent.php

Jmhc\Restful\Utils\Agent

请求 Agent 类

SdlCache.php

Jmhc\Restful\Utils\SdlCache

单设备登录类

Token.php

Jmhc\Restful\Utils\Token

令牌相关类


All versions of laravel-api with dependencies

PHP Build Version
Package Version
Requires php Version ^7.3
ext-json Version *
ext-openssl Version *
jmhc/laravel-api-lang Version ^1.0
jmhc/laravel-support Version ^8.0
jmhc/laravel-log Version ^8.0
jmhc/laravel-database Version ^8.0
jenssegers/agent Version ^2.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 jmhc/laravel-api contains the following files

Loading the files please wait ....