Download the PHP package chujc/v-admin without Composer

On this page you can find all versions of the php package chujc/v-admin. 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 v-admin

VAdmin

项目快速开发后台,采用前后端分离的方式,同时支持Laravel、Lumen 5.5LTS以上版本。

说明

可以配合由专用的后台UI(v-admin-ui)。使用中可以多查看配置项config/admin.php,根据需求调整。

Laravel预览地址: (http://laravel.team.hanguosoft.com/admin)

Lumen预览地址: (http://Lumen.team.hanguosoft.com/admin)

账号: admin 密码:123456

强烈推荐安装v-admin-tools 可以配合生成前后端代码

composer require v-admin-tools

功能

依赖

laravel安装

  1. composer require chujc/v-admin
  2. php artisan vendor:publish --provider="ChuJC\Admin\AdminServiceProvider"

    在该命令会生成配置文件config/admin.php,可以在里面修改安装的地址、数据库连接、以及表名,建议都是用默认配置不修改。

  3. php artisan admin:install

    启动服务后,可以在按接口文档中使用调用对应的接口 ,使用用户名 admin 和密码 123456登录.

Lumen安装

  1. composer require chujc/v-admin
  2. ...

    在该命令会生成配置文件config/admin.php,可以在里面修改安装的地址、数据库连接、以及表名,建议都是用默认配置不修改。

  3. bootstrap/app.php 文件中添加

  4. php artisan vendor:publish --provider="ChuJC\Admin\AdminServiceProvider"

    在该命令会生成配置文件config/admin.php,可以在里面修改安装的地址、数据库连接、以及表名,建议都是用默认配置不修改。

必须先安装tymon/jwt-auth在执行如下命令

  1. php artisan admin:install

    启动服务后,可以在按接口文档中使用调用对应的接口 ,使用用户名 admin 和密码 123456登录.

  2. 在Lumen中注入FormRequest表单验证类 需要在bootstrap/app.php 文件中添加 完整之后就可以如同laravel一样使用

    $app->register(\ChuJC\Admin\Providers\RequestServiceProvider::class); 验证失败 会抛出 Illuminate\Validation\ValidationException 异常,如果对格式有要求可以参照如下代码

其他扩展

其他

项目借鉴laravel-admin的思想可以自定义配置model等


All versions of v-admin with dependencies

PHP Build Version
Package Version
Requires php Version >=7
league/flysystem Version ^1.0
maatwebsite/excel Version ^3.1
illuminate/support Version ^5.5|^6|^7
illuminate/console Version ^5.5|^6|^7
illuminate/filesystem Version ^5.5|^6|^7
tymon/jwt-auth Version ^1.0
zoujingli/ip2region Version ^1.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 chujc/v-admin contains the following files

Loading the files please wait ....